Skip to content

Commit

Permalink
ci: Add GitHub workflow to run tests on pushes and PRs. (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again authored Dec 16, 2021
1 parent da776a1 commit b0be84c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci:test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: ci
on:
- push
- pull_request
jobs:
test:
name: Continuous integration (test)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bahmutov/npm-install@v1
with:
useRollingCache: true
- run: npm test

0 comments on commit b0be84c

Please sign in to comment.