Skip to content

Commit

Permalink
chore(ci): add github action to run unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Coly010 committed Feb 28, 2021
1 parent 8669691 commit 905c346
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: PR Status Check
on:
pull_request:
branches: [main]
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm install
- run: npm run affected:test

0 comments on commit 905c346

Please sign in to comment.