Skip to content

Commit

Permalink
Add GH Action for running tests (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
leebyron committed Apr 23, 2021
1 parent 5b7b9f6 commit e5d241d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,12 @@
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 'latest'
- run: npm ci
- run: npm test

0 comments on commit e5d241d

Please sign in to comment.