Skip to content

Commit

Permalink
Add Github Actions workflow for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jehna committed Nov 20, 2020
1 parent c5cade8 commit 287f92c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,16 @@
name: Run tests
on: pull_request
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 11, 10]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:verbose

0 comments on commit 287f92c

Please sign in to comment.