Skip to content

Commit 85d9372

Browse files
radaretrufae
authored andcommitted
Check things in the CI (node16 and node18 only)
1 parent d2910f0 commit 85d9372

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
8+
jobs:
9+
build:
10+
11+
runs-on: macos-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [ '16', '18' ]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v1
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
25+
- run: npm install
26+
- run: npm test
27+
- run: npm run semi
28+
- run: npm run dist

0 commit comments

Comments
 (0)