From 96fdba0dc736964d835d786996a92b9a56f7d282 Mon Sep 17 00:00:00 2001 From: icanc <44480394+icanc0@users.noreply.github.com> Date: Fri, 9 Feb 2024 18:30:18 -0500 Subject: [PATCH] use npm for github actions --- .github/workflows/deploy_pages.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy_pages.yml b/.github/workflows/deploy_pages.yml index 20b3441..7909dff 100644 --- a/.github/workflows/deploy_pages.yml +++ b/.github/workflows/deploy_pages.yml @@ -28,19 +28,15 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Install pnpm - uses: pnpm/action-setup@v2 - with: - version: 8 - name: Install Node.js uses: actions/setup-node@v3 with: node-version: 18 - cache: pnpm + cache: npm - name: Install dependencies - run: pnpm i + run: npm i - name: Setup Pages uses: actions/configure-pages@v3 @@ -48,7 +44,7 @@ jobs: static_site_generator: "sveltekit" - name: Build site - run: pnpm run build + run: npm run build - name: Upload artifact uses: actions/upload-pages-artifact@v1