Skip to content

Commit 46dcb0e

Browse files
authored
build: add github action for testing (#292)
1 parent 7610ed3 commit 46dcb0e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Check
2+
on: push
3+
jobs:
4+
check:
5+
name: Check
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout repo
9+
uses: actions/checkout@v3
10+
11+
- name: Setup Node
12+
uses: actions/setup-node@v3
13+
with:
14+
node-version: 18
15+
16+
- name: Install dependencies
17+
run: npm ci
18+
19+
- name: Run test
20+
run: npm test

0 commit comments

Comments
 (0)