Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .appveyor.yml

This file was deleted.

44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: CI

on:
push:
branches:
- master
- fix/ci
pull_request:
branches:
- master

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
node-version:
- 16.x
- 18.x
- 20.x
- 22.x

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install

- name: Show versions
run: |
node --version
npm --version

- name: Run tests
run: npm test
28 changes: 28 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish to npm

on:
release:
types:
- published

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js (LTS)
uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: https://registry.npmjs.org/

- name: Install dependencies
run: npm install

- name: Publish to npm
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ This plugin lets you:

### Requirements

- node.js 4.x or later
- grunt 0.4 or later
- node.js 16.x or later
- grunt 1.6 or later

### Install

Expand Down Expand Up @@ -108,9 +108,10 @@ Please note that processes that are not killed will continue running even after

## Release History

* 2025-03-29 v0.5.0 Updated dependencies (grunt 1.6+, node 16+)
* 2019-05-26 v0.4.1 Updated dependencies
* 2019-01-29 v0.4.0 Added CI on Travis, AppVeyor; updated node.js engine dependency to >=4
* 2019-01-26 v0.3.12 Removed dependency on exec-sync to resolve security advisory
* 2019-01-26 v0.3.12 Removed dependency on exec-sync to resolve security advisory
* 2015-01-07 v0.3.1 Fix the :kill task on UNIX and Windows
* 2013-04-06 v0.1.3 Last version with support for grunt 0.3.x

Expand Down
Loading