From 7c77a11d4465f9a4dcd95bf384b291518b41ceae Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Sun, 30 Jul 2023 14:25:49 +0200 Subject: [PATCH] Migrated to pnpm --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38b8f03..c325a8e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,16 +15,20 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 + - uses: pnpm/action-setup@v2 + with: + version: 8 + - name: Setup Node uses: actions/setup-node@v3 with: node-version: 18 - name: Install dependencies - uses: bahmutov/npm-install@v1 + run: pnpm install - name: Build project - run: npm run build + run: pnpm build - name: Upload production-ready build files uses: actions/upload-artifact@v3