From 9be5586fcab71facdecd50f7db0e234e8d857fe6 Mon Sep 17 00:00:00 2001 From: carsakiller Date: Thu, 27 Jun 2024 19:34:10 +0000 Subject: [PATCH] ci: pnpm-ify deploy action --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c4ccd09..14f5936 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,10 +38,10 @@ jobs: run: pnpm install - name: Install Playwright (for MermaidJS) - run: npx playwright install --with-deps chromium + run: pnpm exec playwright install --with-deps chromium - name: Build Website - run: npm run build + run: pnpm build - name: Upload Built Website uses: actions/upload-pages-artifact@v3 @@ -84,10 +84,10 @@ jobs: run: pnpm install - name: Install Playwright Browsers - run: npx playwright install --with-deps chromium firefox + run: pnpm exec playwright install --with-deps chromium firefox - name: Run Playwright tests - run: npx playwright test + run: pnpm test:e2e - name: Upload Test Results uses: actions/upload-artifact@v4