Skip to content

Commit 6c81ed8

Browse files
committed
Add GH Action for running tests (#859)
1 parent 5b7b9f6 commit 6c81ed8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Test
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-node@v1
9+
with:
10+
node-version: '16.x'
11+
- run: npm ci
12+
- run: npm test

0 commit comments

Comments
 (0)