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