We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b11c9 commit 0cc3c10Copy full SHA for 0cc3c10
.github/workflows/node-windows.yml
@@ -0,0 +1,27 @@
1
+name: Node
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: windows-2019
9
10
+ strategy:
11
+ matrix:
12
+ node: [ '14', '12', '10' ]
13
14
+ name: ${{ matrix.node }} (Windows)
15
+ steps:
16
+ - name: Checkout Commit
17
+ uses: actions/checkout@v1
18
+ - name: Setup Node
19
+ uses: actions/setup-node@v1
20
+ with:
21
+ node-version: ${{ matrix.node }}
22
+ - name: checkout master
23
+ run: git branch -f master origin/master
24
+ - name: yarn install
25
+ run: yarn install
26
+ - name: run tests
27
+ run: yarn test
0 commit comments