diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 14c0b669..d032c6e7 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -31,22 +31,17 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Install pnpm - uses: pnpm/action-setup@v4 - with: - version: 8 - - name: Set up Node uses: actions/setup-node@v4 with: node-version: 24 - cache: 'pnpm' + cache: 'npm' - name: Install dependencies - run: pnpm install + run: npm install - name: Build - run: pnpm run build + run: npm run build - name: Setup Pages uses: actions/configure-pages@v4