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.
1 parent 98c1d58 commit ce5d865Copy full SHA for ce5d865
.github/workflows/deploy.yaml
@@ -21,22 +21,16 @@ jobs:
21
uses: actions/setup-node@v4
22
with:
23
node-version: ${{ env.NODE_VERSION }}
24
- cache: 'pnpm'
25
-
26
- - name: 🔧 Enable Corepack
27
- run: corepack enable
28
29
- - name: 📥 Install pnpm
30
- run: corepack prepare [email protected] --activate
+ cache: 'npm'
31
32
- name: 📦 Install dependencies
33
- run: pnpm install
+ run: npm install
34
35
- name: 🎭 Install Playwright browsers
36
- run: pnpm exec playwright install --with-deps
+ run: npm run playwright install --with-deps
37
38
- name: 🛠️ Build Astro
39
- run: pnpm run build
+ run: npm run build
40
41
- name: 🚀 Deploy to Cloudflare Pages
42
uses: cloudflare/pages-action@v1
0 commit comments