Skip to content

Commit 2953872

Browse files
committed
Update README
1 parent ffeffaf commit 2953872

File tree

5 files changed

+48
-43
lines changed

5 files changed

+48
-43
lines changed

.github/workflows/test.yml

+39-39
Original file line numberDiff line numberDiff line change
@@ -1,39 +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: [10, 12, 14]
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 i
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')
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: [10, 12, 14]
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')

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v3.0.0:
2+
date: 2020-03-25
3+
changes:
4+
- Updated to latest nodeunit and security packages.
15
v2.1.0:
26
date: 2020-02-10
37
changes:

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please see the [Contributing to grunt](https://gruntjs.com/contributing) guide for information on contributing to this project.
1+
Please see the [Contributing to grunt](https://gruntjs.com/contributing) guide for information on contributing to this project.

README.md

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

33
> Run Nodeunit unit tests
44
@@ -125,6 +125,7 @@ grunt.initConfig({
125125

126126
## Release History
127127

128+
* 2020-03-25   v3.0.0   Updated to latest nodeunit and security packages.
128129
* 2020-02-10   v2.1.0   Updates to latest node.js supported versions. Updated to latest nodeunit and security packages.
129130
* 2018-05-19   v2.0.0   Updates to latest node.js supported versions. Updated to latest nodeunit. Updates to dependencies for security reasons.
130131
* 2016-03-04   v1.0.0   Fixed unit test to run on Node.js v4.x and v5.x. Point main to task and remove peerDep. Doc updates.
@@ -144,4 +145,4 @@ grunt.initConfig({
144145

145146
Task submitted by ["Cowboy" Ben Alman](http://benalman.com)
146147

147-
*This file was generated on Mon Feb 10 2020 14:23:59.*
148+
*This file was generated on Thu Mar 25 2021 12:04:38.*

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-contrib-nodeunit",
33
"description": "Run Nodeunit unit tests",
4-
"version": "2.1.0",
4+
"version": "3.0.0",
55
"author": {
66
"name": "Grunt Team",
77
"url": "http://gruntjs.com/"

0 commit comments

Comments
 (0)