File tree 1 file changed +15
-6
lines changed
1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
name : ci
2
2
on :
3
- - pull_request
4
- - push
3
+ pull_request :
4
+ push :
5
+ branches : [master]
5
6
6
7
jobs :
7
8
Test :
@@ -13,28 +14,36 @@ jobs:
13
14
os :
14
15
- ubuntu-latest
15
16
- macos-latest
16
- - windows-latest
17
+ - windows-2019
17
18
node_version :
18
19
- 10
19
20
- 12
20
21
- 14
21
22
name : Node ${{ matrix.node_version }} on ${{ matrix.os }}
22
23
23
24
steps :
24
- - uses : actions/checkout@v2
25
+ - uses : actions/checkout@v3
25
26
with :
26
27
submodules : true
27
28
- name : Cache
28
- uses : actions/cache@v2
29
+ uses : actions/cache@v3
29
30
with :
30
31
path : |
31
32
'node_modules'
32
33
key : ${{ runner.os }}-${{ matrix.node_version }}-${{ hashFiles('package.json') }}
33
34
34
35
- name : Setup node
35
- uses : actions/setup-node@v2-beta
36
+ uses : actions/setup-node@v3
36
37
with :
37
38
node-version : ${{ matrix.node_version }}
39
+ architecture : x64
40
+
41
+ - name : Setup Cpp
42
+ uses : aminya/setup-cpp@v1
43
+ with :
44
+ vcvarsall : true
45
+ architecture : x64
46
+ python : true
38
47
39
48
- name : Install dependencies
40
49
run : npm install
You can’t perform that action at this time.
0 commit comments