Bump diff from 4.0.2 to 4.0.4 #183
This file contains hidden or 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
| # see https://playwright.dev/docs/ci-intro | |
| name: e2e | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request_target: | |
| jobs: | |
| test: | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.node-version' | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Install Playwright Browsers | |
| run: | | |
| # Install Playwright without trying to install system dependencies | |
| yarn playwright install | |
| # Install specific browsers needed | |
| yarn playwright install chromium | |
| - name: Run Playwright tests | |
| run: yarn test:e2e | |
| # Update to v4 to fix the deprecated action issue | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |