Skip to content

Commit

Permalink
add pull request workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
powerpaul17 committed Nov 6, 2023
1 parent c5c2ea0 commit ced0f12
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pull request

on: pull_request

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run lint

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run test

0 comments on commit ced0f12

Please sign in to comment.