We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9c2eeb + 162947a commit 433bfd0Copy full SHA for 433bfd0
.github/workflows/trigger-tasks-deploy-main.yml
@@ -11,11 +11,13 @@ jobs:
11
- name: Use Node.js 20.x
12
uses: actions/setup-node@v4
13
with:
14
- node-version: "20.x"
+ node-version: "22.x" # Updated to match Node.js w/ Vercel
15
- name: Setup Bun
16
uses: oven-sh/setup-bun@v1
17
+ - name: Clear cache
18
+ run: rm -rf node_modules .bun
19
- name: Install dependencies
- run: bun install
20
+ run: bun install --no-cache
21
- name: Generate Prisma client
22
working-directory: ./packages/db
23
run: bunx prisma generate
0 commit comments