File tree Expand file tree Collapse file tree 3 files changed +43
-1
lines changed Expand file tree Collapse file tree 3 files changed +43
-1
lines changed Original file line number Diff line number Diff line change 1
- name : Build
1
+ name : Build Linux
2
2
on : [ push, pull_request ]
3
3
4
4
jobs :
Original file line number Diff line number Diff line change
1
+ name : Build OSX
2
+ on : [push, pull_request]
3
+
4
+ jobs :
5
+ build :
6
+ runs-on : macOS-latest
7
+ steps :
8
+ - name : Checkout
9
+ uses : actions/checkout@v2
10
+ with :
11
+ fetch-depth : 0
12
+ - name : Build Reason
13
+ run : " echo ref: ${{github.ref}} event: ${{github.event_name}}"
14
+ - name : Setup Node.js environment
15
+ uses : actions/setup-node@v2.1.2
16
+ - name : NPM install with caching
17
+ uses : bahmutov/npm-install@v1.1.0
18
+ - name : Build
19
+ run : gulp build
20
+ - name : Run Tests
21
+ run : gulp test
Original file line number Diff line number Diff line change
1
+ name : Build Windows
2
+ on : [push, pull_request]
3
+
4
+ jobs :
5
+ build :
6
+ runs-on : windows-latest
7
+ steps :
8
+ - name : Checkout
9
+ uses : actions/checkout@v2
10
+ with :
11
+ fetch-depth : 0
12
+ - name : Build Reason
13
+ run : " echo ref: ${{github.ref}} event: ${{github.event_name}}"
14
+ - name : Setup Node.js environment
15
+ uses : actions/setup-node@v2.1.2
16
+ - name : NPM install with caching
17
+ uses : bahmutov/npm-install@v1.1.0
18
+ - name : Build
19
+ run : gulp build
20
+ - name : Run Tests
21
+ run : gulp test
You can’t perform that action at this time.
0 commit comments