Skip to content

Commit d226900

Browse files
authored
Update deps, clean up (#116)
* Update deps, clean up * Text updates
1 parent 395bb66 commit d226900

File tree

7 files changed

+3284
-4089
lines changed

7 files changed

+3284
-4089
lines changed

.github/workflows/test.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Tests
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
FORCE_COLOR: 2
7+
8+
jobs:
9+
run:
10+
name: Node ${{ matrix.node }} on ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
node: [12, 14, 16]
17+
os: [ubuntu-latest, windows-latest]
18+
19+
steps:
20+
- name: Clone repository
21+
uses: actions/checkout@v2
22+
23+
- name: Set up Node.js
24+
uses: actions/setup-node@v2
25+
with:
26+
node-version: ${{ matrix.node }}
27+
28+
- name: Install npm dependencies
29+
run: npm ci
30+
31+
- name: Run tests
32+
run: npm test
33+
34+
# We test multiple Windows shells because of prior stdout buffering issues
35+
# filed against Grunt. https://github.com/joyent/node/issues/3584
36+
- name: Run PowerShell tests
37+
run: "npm test # PowerShell" # Pass comment to PS for easier debugging
38+
shell: powershell
39+
if: startsWith(matrix.os, 'windows')

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v2.0.1:
2+
date: 2022-04-15
3+
changes:
4+
- Update all dependencies.
5+
- Requires node.js > 12.
16
v2.0.0:
27
date: 2018-09-08
38
changes:

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grunt-contrib-clean v2.0.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-clean.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-clean) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/li28411ceq3n833d/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-clean/branch/master)
1+
# grunt-contrib-clean v2.0.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-clean/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-clean/actions?workflow=Tests)
22

33
> Clean files and folders
44
@@ -144,6 +144,7 @@ clean: {
144144

145145
## Release History
146146

147+
* 2022-04-15   v2.0.1   Update all dependencies. Requires node.js > 12.
147148
* 2018-09-08   v2.0.0   Update all dependencies. Drop Node.js < 6 support.
148149
* 2017-04-12   v1.1.0   Update grunt to 1.0.0. Updates to docs and changelog. Update internal modules.
149150
* 2016-02-15   v1.0.0   Drop support for Node.js v0.8. Grunt peer dependency tagged `>= 0.4.5`. Dependency updates.
@@ -162,4 +163,4 @@ clean: {
162163

163164
Task submitted by [Tim Branyen](http://tbranyen.com/)
164165

165-
*This file was generated on Sat Sep 08 2018 11:53:35.*
166+
*This file was generated on Fri Apr 15 2022 21:07:19.*

appveyor.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)