Skip to content

Commit ec66370

Browse files
authored
chore: Add GitHub CI test workflow (#41)
1 parent b8ce582 commit ec66370

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-22.04
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-node@v2
15+
with:
16+
node-version: "16.x"
17+
- run: npm ci
18+
- run: npm test

0 commit comments

Comments
 (0)