We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19c5887 commit 290f1b0Copy full SHA for 290f1b0
1 file changed
.github/workflows/ci.yml
@@ -12,6 +12,8 @@ jobs:
12
NPM_TOKEN: ${{ secrets.GH_TOKEN }}
13
PRISMA_ENGINES_CHECKSUM_IGNORE_MISSING: 1
14
PRISMA_SKIP_POSTINSTALL_GENERATE: true
15
+ PRISMA_BINARIES_MIRROR: https://prisma-builds.s3-eu-west-1.amazonaws.com
16
+ PRISMA_ENGINES_MIRROR: https://prisma-builds.s3-eu-west-1.amazonaws.com
17
strategy:
18
matrix:
19
node-version: [20.x]
@@ -36,9 +38,8 @@ jobs:
36
38
run: npm ci
37
39
40
- name: Generate Prisma Client
- run: |
- npx prisma generate --skip-engines || echo "Skipping engine download"
41
- npx prisma generate
+ run: npx prisma generate
42
+ continue-on-error: false
43
44
- name: Lint
45
run: npm run lint
0 commit comments