Skip to content

Commit

Permalink
Update deps, clean up (#116)
Browse files Browse the repository at this point in the history
* Update deps, clean up

* Text updates
  • Loading branch information
vladikoff committed Apr 16, 2022
1 parent 395bb66 commit d226900
Show file tree
Hide file tree
Showing 7 changed files with 3,284 additions and 4,089 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Tests

on: [push, pull_request]

env:
FORCE_COLOR: 2

jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
node: [12, 14, 16]
os: [ubuntu-latest, windows-latest]

steps:
- name: Clone repository
uses: actions/checkout@v2

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

- name: Install npm dependencies
run: npm ci

- name: Run tests
run: npm test

# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- name: Run PowerShell tests
run: "npm test # PowerShell" # Pass comment to PS for easier debugging
shell: powershell
if: startsWith(matrix.os, 'windows')
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v2.0.1:
date: 2022-04-15
changes:
- Update all dependencies.
- Requires node.js > 12.
v2.0.0:
date: 2018-09-08
changes:
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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)
# 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)

> Clean files and folders
Expand Down Expand Up @@ -144,6 +144,7 @@ clean: {

## Release History

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

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

*This file was generated on Sat Sep 08 2018 11:53:35.*
*This file was generated on Fri Apr 15 2022 21:07:19.*
33 changes: 0 additions & 33 deletions appveyor.yml

This file was deleted.

Loading

0 comments on commit d226900

Please sign in to comment.