Skip to content

Commit 0d9fb3e

Browse files
committed
👷 Add build test workflow
1 parent 36249b6 commit 0d9fb3e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: 'Build'
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
name: Build (${{ matrix.os }})
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [macos-latest, ubuntu-latest, windows-latest]
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
16+
- name: Install
17+
run: npm ci
18+
19+
- name: Lint
20+
run: npm run lint
21+
22+
- name: Build
23+
run: npm run build

0 commit comments

Comments
 (0)