Skip to content

Commit

Permalink
tests: add Github Actions workflow for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
filipedeschamps committed Jul 20, 2021
1 parent fbdbed3 commit 29cfdf5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Tests

on: [push, pull_request]

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14"
- run: npm ci
- run: npm test

0 comments on commit 29cfdf5

Please sign in to comment.