Skip to content

Commit

Permalink
add check:all
Browse files Browse the repository at this point in the history
  • Loading branch information
0age committed Dec 6, 2024
1 parent 7082640 commit 7e5ce87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Server Configuration
BASE_URL=http://localhost:3000
PORT=3000
CORS_ORIGIN=*
DEV_FRONTEND_URL=http://localhost:3001

# Database Configuration
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"format:check": "prettier --check \"src/**/*.ts\"",
"prepare": "husky",
"check-test-files": "node scripts/check-test-files.js",
"lint-staged": "lint-staged"
"lint-staged": "lint-staged",
"check:all": "pnpm build:all || true && pnpm lint || true && cd frontend && pnpm lint || true && cd - && pnpm format:check || true && cd frontend && prettier --check \"src/**/*.{ts,tsx}\" || true && cd - && pnpm type-check || true && cd frontend && pnpm tsc --noEmit -p tsconfig.app.json || true && cd - && pnpm test || true && pnpm smoke-test || true"
},
"lint-staged": {
"**/*.{test,spec}.ts": [
Expand Down

0 comments on commit 7e5ce87

Please sign in to comment.