From 2b86cbe11daed56f32e425024f7e0f718d4b9e37 Mon Sep 17 00:00:00 2001 From: dno-luigi <137290593+dno-luigi@users.noreply.github.com> Date: Wed, 26 Feb 2025 10:56:09 -0800 Subject: [PATCH] Update ci.yaml --- .github/workflows/ci.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7fcfcbe..8c5b742 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,17 +12,12 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v4.1.0 - name: Install pnpm - id: pnpm-install - with: - version: 8 - - - name: Setup Node.js 20 + - name: Setup Node.js 20 and pnpm uses: actions/setup-node@v4 with: node-version: 20.x - cache: "pnpm" + cache: "pnpm" # CORRECTED: Enable pnpm caching, set up node. + - name: Install dependencies run: pnpm install @@ -30,5 +25,7 @@ jobs: uses: cloudflare/wrangler-action@v3.7.0 with: apiToken: ${{ secrets.CF_API_TOKEN }} + projectDir: ./ #If you kept your wrangler.toml in the same directory env: CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }} +