File tree Expand file tree Collapse file tree 3 files changed +96
-0
lines changed Expand file tree Collapse file tree 3 files changed +96
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " tests: Mac + CR"
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+ branches :
9
+ - master
10
+
11
+ jobs :
12
+ build :
13
+
14
+ runs-on : macos
15
+
16
+ strategy :
17
+ matrix :
18
+ node-version : [12.x]
19
+
20
+ steps :
21
+ - uses : actions/checkout@v1
22
+ - name : Use Node.js ${{ matrix.node-version }}
23
+ uses : actions/setup-node@v1
24
+ with :
25
+ node-version : ${{ matrix.node-version }}
26
+
27
+ - name : npm install, and test
28
+ run : |
29
+ npm install
30
+ npm run ctest
31
+ env :
32
+ CI : true
Original file line number Diff line number Diff line change
1
+ name : " tests: Mac + FF"
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+ branches :
9
+ - master
10
+
11
+ jobs :
12
+ build :
13
+
14
+ runs-on : macos
15
+
16
+ strategy :
17
+ matrix :
18
+ node-version : [12.x]
19
+
20
+ steps :
21
+ - uses : actions/checkout@v1
22
+ - name : Use Node.js ${{ matrix.node-version }}
23
+ uses : actions/setup-node@v1
24
+ with :
25
+ node-version : ${{ matrix.node-version }}
26
+
27
+ - name : npm install, and test
28
+ run : |
29
+ npm install
30
+ npm run ftest
31
+ env :
32
+ CI : true
Original file line number Diff line number Diff line change
1
+ name : " tests: Mac + WK"
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+ branches :
9
+ - master
10
+
11
+ jobs :
12
+ build :
13
+
14
+ runs-on : macos
15
+
16
+ strategy :
17
+ matrix :
18
+ node-version : [12.x]
19
+
20
+ steps :
21
+ - uses : actions/checkout@v1
22
+ - name : Use Node.js ${{ matrix.node-version }}
23
+ uses : actions/setup-node@v1
24
+ with :
25
+ node-version : ${{ matrix.node-version }}
26
+
27
+ - name : npm install, and test
28
+ run : |
29
+ npm install
30
+ npm run wtest
31
+ env :
32
+ CI : true
You can’t perform that action at this time.
0 commit comments