Skip to content

Commit

Permalink
refactor: ♻️ fixing build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aacevski committed Jan 7, 2025
1 parent 59baf3c commit aef505e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
run: pnpm install

- name: Lint project with Biome
run: pnpm run format-and-lint
run: pnpm dlx turbo format-and-lint

- name: Check types
run: pnpm dlx turbo check-types

- name: Build project
run: pnpm run build
# - name: Build project
# run: pnpm dlx turbo build TODO: Fix build
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
"outputs": ["dist/**"]
},
"//#format-and-lint": {},
"//#format-and-lint:fix": {
Expand Down

0 comments on commit aef505e

Please sign in to comment.