diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a90a190..6869813 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,39 +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: [10, 12, 14] - 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 i - - - 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') +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: [10, 12, 14] + 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') diff --git a/CHANGELOG b/CHANGELOG index bb40363..85aee4e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v3.0.0: + date: 2020-03-25 + changes: + - Updated to latest nodeunit and security packages. v2.1.0: date: 2020-02-10 changes: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1073d15..ccefc7f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1 +1 @@ -Please see the [Contributing to grunt](https://gruntjs.com/contributing) guide for information on contributing to this project. +Please see the [Contributing to grunt](https://gruntjs.com/contributing) guide for information on contributing to this project. diff --git a/README.md b/README.md index 6797103..ca3325e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 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) +# 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) > Run Nodeunit unit tests @@ -125,6 +125,7 @@ grunt.initConfig({ ## Release History + * 2020-03-25   v3.0.0   Updated to latest nodeunit and security packages. * 2020-02-10   v2.1.0   Updates to latest node.js supported versions. Updated to latest nodeunit and security packages. * 2018-05-19   v2.0.0   Updates to latest node.js supported versions. Updated to latest nodeunit. Updates to dependencies for security reasons. * 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({ Task submitted by ["Cowboy" Ben Alman](http://benalman.com) -*This file was generated on Mon Feb 10 2020 14:23:59.* +*This file was generated on Thu Mar 25 2021 12:04:38.* diff --git a/package.json b/package.json index 3271a6d..4019160 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "grunt-contrib-nodeunit", "description": "Run Nodeunit unit tests", - "version": "2.1.0", + "version": "3.0.0", "author": { "name": "Grunt Team", "url": "http://gruntjs.com/"