File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 55
55
run : npm run build
56
56
- name : Test distribution
57
57
run : npm test
58
+ test-windows :
59
+ name : " Test compiler on Windows with node: node"
60
+ runs-on : windows-latest
61
+ needs : check
62
+ steps :
63
+ - uses : actions/checkout@v1.0.0
64
+ - name : Install node via nvm-windows
65
+ run : |
66
+ Invoke-WebRequest -Uri https://github.com/coreybutler/nvm-windows/releases/download/1.1.7/nvm-noinstall.zip -OutFile nvm.zip
67
+ Expand-Archive nvm.zip -DestinationPath nvm
68
+ nvm/nvm install node
69
+ nvm/nvm use node
70
+ npm -g install npm@latest
71
+ - name : Install dependencies
72
+ run : npm ci --no-audit
73
+ - name : Clean distribution files
74
+ run : npm run clean
75
+ - name : Test sources
76
+ run : npm test
77
+ - name : Build distribution files
78
+ run : npm run build
79
+ - name : Test distribution
80
+ run : npm test
58
81
test-canary :
59
82
name : " Test features on node: v8-canary"
60
83
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ under the licensing terms detailed in LICENSE:
18
18
* Emil Laine <laine.emil@gmail.com>
19
19
* Stephen Paul Weber <stephen.weber@shopify.com>
20
20
* Jay Phelps <hello@jayphelps.com>
21
+ * jhwgh1968 <jhwgh1968@protonmail.com>
21
22
22
23
Portions of this software are derived from third-party works licensed under
23
24
the following terms:
You can’t perform that action at this time.
0 commit comments