Skip to content

Commit

Permalink
add debugging statement to debug prettier issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvisut committed Oct 11, 2024
1 parent 3e31369 commit 5f2a52a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:
- name: Install dependencies
run: npm i --ci
- name: Run format:check
run: npm run format:check
run: |
npm run format:version
npm run format:check
- name: Run lint
run: npm run lint

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"postinstall": "next build --no-lint && nsm build --skip-build --only-api-files && npm run type-css",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"format:version": "prettier --version",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"all:check": "npm run type:check && npm run type-css:check && npm run lint && npm run format:check && npm run test",
Expand Down

0 comments on commit 5f2a52a

Please sign in to comment.