Skip to content

Commit

Permalink
Add Prettier check to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hugo committed Jul 19, 2023
1 parent d62bfa6 commit 68135c7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Prettier

on:
pull_request_target:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v3.7.0
with:
node-version: "18"
- run: npm ci
- run: npm run prettier:check

0 comments on commit 68135c7

Please sign in to comment.