Skip to content

Commit

Permalink
add format checker to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
atimin committed Apr 29, 2024
1 parent 38d8704 commit 7e8223d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,17 @@ on:
pull_request:
branches: [main, stable]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run fmt:check

test:
name: "Install dependencies and test app"
runs-on: ubuntu-latest
needs: format
steps:
- uses: actions/checkout@v2
- name: Install modules
Expand Down

0 comments on commit 7e8223d

Please sign in to comment.