Skip to content

Commit

Permalink
Run tests in PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ar committed Oct 12, 2023
1 parent d12dc7d commit 9d21933
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "npm"
cache-dependency-path: "package-lock.json"
check-latest: false
- run: npm ci
- run: make test

0 comments on commit 9d21933

Please sign in to comment.