Skip to content

Commit 27daa40

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

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Test
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
steps:
6+
- uses: actions/checkout@v2
7+
- uses: actions/setup-node@v1
8+
- run: npm ci
9+
- run: npm test

0 commit comments

Comments
 (0)