Skip to content

Commit 0cc3c10

Browse files
committed
trying windows ia GH actions
1 parent e6b11c9 commit 0cc3c10

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/node-windows.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)