Skip to content

Commit

Permalink
workflow: add PR check
Browse files Browse the repository at this point in the history
  • Loading branch information
josStorer committed Aug 8, 2022
1 parent 576aedb commit 17412c1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: PR check
on:
pull_request:
branches:
- master
jobs:
run_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm test

get_output:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run build
- run: node ./dist/index.js

0 comments on commit 17412c1

Please sign in to comment.