Skip to content

Commit bc1ee32

Browse files
committed
Add build CI
Fixes #784
1 parent 3c29567 commit bc1ee32

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/node.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Node tests
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
jobs:
8+
build:
9+
strategy:
10+
matrix:
11+
version: [12, 13, 14, 15, 16]
12+
os: [ubuntu-latest, windows-latest]
13+
runs-on: ${{ matrix.os }}
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: actions/setup-node@v1
17+
with:
18+
node-version: ${{ matrix.version }}
19+
- run: npm ci
20+
- run: npm run package:discover
21+
- run: npm run build

0 commit comments

Comments
 (0)