File tree 1 file changed +8
-13
lines changed
1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
-
3
- on :
4
- pull_request :
5
- push :
6
-
2
+ " on " :
3
+ pull_request : null
4
+ push : null
7
5
jobs :
8
-
9
6
build :
10
7
runs-on : ${{ matrix.os }}
11
8
strategy :
@@ -16,25 +13,23 @@ jobs:
16
13
- 14
17
14
- 16
18
15
- 17
19
- os : [ubuntu-latest, macos-latest, windows-latest]
20
-
16
+ os :
17
+ - ubuntu-latest
18
+ - macos-latest
19
+ - windows-latest
21
20
steps :
22
21
- name : 🛑 Cancel Previous Runs
23
22
24
23
with :
25
24
access_token : ${{ secrets.GITHUB_TOKEN }}
26
-
27
25
- name : ⬇️ Checkout
28
- uses : actions/checkout@v2
29
-
26
+ uses : actions/checkout@v3
30
27
- name : ⎔ Setup node ${{ matrix.node }}
31
28
uses : actions/setup-node@v2
32
29
with :
33
30
node-version : ${{ matrix.node }}
34
31
cache : npm
35
-
36
32
- name : 📥 Download deps
37
33
run : npm ci
38
-
39
34
- name : Test
40
35
run : npm test
You can’t perform that action at this time.
0 commit comments