chore(deps-dev): update dependency @astrojs/node to v9 #463
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
defaults: | |
run: | |
working-directory: client | |
env: | |
PLAYWRIGHT_VERSION: null | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
node-version: 20 | |
- name: Get Playwright version | |
run: echo "PLAYWRIGHT_VERSION=$(jq '.devDependencies["@playwright/test"]' package.json -r)" >> $GITHUB_ENV | |
- name: Cache Playwright Browsers | |
id: cache-playwright-browsers | |
uses: actions/cache@v4 | |
with: | |
key: playwright-browsers-linux-${{ env.PLAYWRIGHT_VERSION }} | |
# On Linux, browser binaries are saved in `~/.cache/ms-playwright`. | |
# https://playwright.dev/docs/browsers#managing-browser-binaries | |
path: ~/.cache/ms-playwright | |
- name: Install Playwright system dependencies | |
if: steps.cache-playwright-browsers.outputs.cache-hit == 'true' | |
run: npx playwright install-deps | |
- name: Install Playwright with browser and system dependencies | |
if: steps.cache-playwright-browsers.outputs.cache-hit != 'true' | |
run: npx playwright install --with-deps | |
- name: Install modules | |
run: npm ci | |
- name: Run E2E tests | |
run: npm run test:e2e | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |