Avoid using npm run for formatting check (something up with the runner?)
Some checks failed
Test, Build, Deploy / Test, Build, and Deploy (push) Failing after 30s
Test, Build, Deploy / Create Sentry Release (push) Has been skipped

This commit is contained in:
2026-03-13 04:07:59 -04:00
parent 9ab695c6a7
commit d09360c390
2 changed files with 1 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ jobs:
run: npm install
- name: Check Formatting
run: npm run check-format
run: npx prettier -c .
- name: Build
run: npm run build

View File

@@ -5,7 +5,6 @@
"type": "module",
"scripts": {
"build": "remix build --sourcemap",
"check-format": "prettier -c .",
"format": "prettier -wc .",
"publish": "remix build --sourcemap && wrangler pages deploy public"
},