Skip to content

Commit 42f93af

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

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
- run: npm ci
10+
- run: npm test

0 commit comments

Comments
 (0)