Skip to content

Commit

Permalink
ci: pnpm-ify deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
carsakiller committed Jun 27, 2024
1 parent a764e48 commit 9be5586
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9be5586

Please sign in to comment.