Skip to content

Commit

Permalink
Add formatting check to PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DallasHoff committed Oct 31, 2024
1 parent 7dcd7ce commit 47f12bb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,14 @@ jobs:
run: 'npm ci'
- name: Run Tests
run: 'npm run test:ci'
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v4
- name: Install Dependencies
run: 'npm ci'
- name: Check Formatting
run: 'npm run format:check'

0 comments on commit 47f12bb

Please sign in to comment.