Skip to content

Commit

Permalink
chore: add action for running tests on pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
jajugoguma committed Jul 22, 2021
1 parent 8da9852 commit 44742bf
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test_on_pull_request.yml
@@ -0,0 +1,11 @@
name: Jest Test
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm install
- name: Run tests
run: npm run test

0 comments on commit 44742bf

Please sign in to comment.