Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix(ci): 🐛 👷 install devdependencies anyway because prisma
Browse files Browse the repository at this point in the history
  • Loading branch information
ecxyzzy committed Feb 28, 2024
1 parent 011e6d3 commit d31d028
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: ./.github/actions/setup-node-and-pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install -P false --frozen-lockfile

- name: Build API
run: pnpm build --filter="@apps/api"
Expand All @@ -71,7 +71,7 @@ jobs:
uses: ./.github/actions/setup-node-and-pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install -P false --frozen-lockfile

- name: Build documentation
run: pnpm build --filter="@apps/docs"
Expand All @@ -94,7 +94,7 @@ jobs:
uses: ./.github/actions/setup-node-and-pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install -P false --frozen-lockfile

- name: Build services
run: pnpm build --filter="@services/*"
Expand Down

0 comments on commit d31d028

Please sign in to comment.