Skip to content

Commit 3cb4f9c

Browse files
committed
Update internal
1 parent b9ffa6b commit 3cb4f9c

File tree

4 files changed

+47
-6
lines changed

4 files changed

+47
-6
lines changed

.github/workflows/test.yml

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

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please see the [Contributing to grunt](http://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

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

33
> Run predefined tasks whenever watched file patterns are added, changed or deleted
44
55

66

77
## Getting Started
88

9-
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
9+
If you haven't used [Grunt](https://gruntjs.com/) before, be sure to check out the [Getting Started](https://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](https://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
1010

1111
```shell
1212
npm install grunt-contrib-watch --save-dev
@@ -513,4 +513,4 @@ You'll have the `connect` web server on separate port ex: port 9000 from your ma
513513

514514
Task submitted by [Kyle Robinson Young](http://dontkry.com)
515515

516-
*This file was generated on Sat May 12 2018 21:15:02.*
516+
*This is a generated file.*

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"devDependencies": {
2525
"grunt": "^1.6.1",
2626
"grunt-cli": "^1.2.0",
27-
"grunt-contrib-internal": "^2.0.0",
28-
"grunt-contrib-jshint": "^1.0.0",
27+
"grunt-contrib-internal": "^8.0.2",
28+
"grunt-contrib-jshint": "^3.2.0",
2929
"grunt-contrib-nodeunit": "^5.0.0",
3030
"grunt-jscs": "^3.0.1",
3131
"underscore.string": "^3.2.2"

0 commit comments

Comments
 (0)