Skip to content

Commit 62ad97b

Browse files
committed
Add build matrix
1 parent 21bc239 commit 62ad97b

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed

.github/workflows/build.yml renamed to .github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build
1+
name: Build Linux
22
on: [ push, pull_request ]
33

44
jobs:

.github/workflows/build-osx.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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/[email protected]
16+
- name: NPM install with caching
17+
uses: bahmutov/[email protected]
18+
- name: Build
19+
run: gulp build
20+
- name: Run Tests
21+
run: gulp test

.github/workflows/build-windows.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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/[email protected]
16+
- name: NPM install with caching
17+
uses: bahmutov/[email protected]
18+
- name: Build
19+
run: gulp build
20+
- name: Run Tests
21+
run: gulp test

0 commit comments

Comments
 (0)