Adjust permissions to get around CORS #26
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
| name: E2E Tests | |
| on: push | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm exec playwright install chromium --with-deps | |
| - run: xvfb-run pnpm test:e2e | |
| - uses: actions/upload-artifact@v6 | |
| if: failure() | |
| with: | |
| name: playwright-screenshots | |
| path: test-results/ | |
| retention-days: 30 |