File tree 4 files changed +40
-40
lines changed
4 files changed +40
-40
lines changed Original file line number Diff line number Diff line change
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')
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 43
43
"findup-sync" : " ~0.3.0" ,
44
44
"glob" : " ~7.1.6" ,
45
45
"grunt-cli" : " ~1.4.2" ,
46
- "grunt-known-options" : " ~1.1.1 " ,
46
+ "grunt-known-options" : " ~2.0.0 " ,
47
47
"grunt-legacy-log" : " ~3.0.0" ,
48
48
"grunt-legacy-util" : " ~2.0.1" ,
49
49
"iconv-lite" : " ~0.4.13" ,
You can’t perform that action at this time.
0 commit comments