Skip to content

Commit ce5d865

Browse files
committed
deploy: move to npm
1 parent 98c1d58 commit ce5d865

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/deploy.yaml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,16 @@ jobs:
2121
uses: actions/setup-node@v4
2222
with:
2323
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
24+
cache: 'npm'
3125

3226
- name: 📦 Install dependencies
33-
run: pnpm install
27+
run: npm install
3428

3529
- name: 🎭 Install Playwright browsers
36-
run: pnpm exec playwright install --with-deps
30+
run: npm run playwright install --with-deps
3731

3832
- name: 🛠️ Build Astro
39-
run: pnpm run build
33+
run: npm run build
4034

4135
- name: 🚀 Deploy to Cloudflare Pages
4236
uses: cloudflare/pages-action@v1

0 commit comments

Comments
 (0)