@@ -14,12 +14,10 @@ jobs:
14
14
uses : actions/setup-node@v1
15
15
with :
16
16
node-version : ${{ matrix.node-version }}
17
- - name : Prepare v3
18
- run : scripts/prepare.sh v3
19
17
- name : Install dependencies (v3)
20
18
run : npm install
21
19
- name : Test (v3)
22
- run : npm run test
20
+ run : npm run test-v3
23
21
24
22
build-v4 :
25
23
runs-on : ubuntu-latest
@@ -32,12 +30,10 @@ jobs:
32
30
uses : actions/setup-node@v1
33
31
with :
34
32
node-version : ${{ matrix.node-version }}
35
- - name : Prepare v4
36
- run : scripts/prepare.sh v4
37
33
- name : Install dependencies (v4)
38
34
run : npm install
39
35
- name : Test (v4)
40
- run : npm run test
36
+ run : npm run test-v4
41
37
42
38
build-v3-windows :
43
39
runs-on : windows-latest
@@ -52,12 +48,10 @@ jobs:
52
48
uses : actions/setup-node@v1
53
49
with :
54
50
node-version : ${{ matrix.node-version }}
55
- - name : Prepare v3 (Windows)
56
- run : scripts/prepare.sh v3
57
51
- name : Install dependencies (v3, Windows)
58
52
run : npm install
59
53
- name : Test (v3, Windows)
60
- run : npm run test
54
+ run : npm run test-v3
61
55
62
56
build-v4-windows :
63
57
runs-on : windows-latest
72
66
uses : actions/setup-node@v1
73
67
with :
74
68
node-version : ${{ matrix.node-version }}
75
- - name : Prepare v4 (Windows)
76
- run : scripts/prepare.sh v4
77
69
- name : Install dependencies (v4, Windows)
78
70
run : npm install
79
71
- name : Test (v4, Windows)
80
- run : npm run test
72
+ run : npm run test-v4
0 commit comments