e2e #650
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 | |
on: | |
workflow_dispatch: | |
inputs: | |
url: | |
required: false | |
description: The URL to run the test suite against. If omitted, it runs against all. | |
type: string | |
deployment_status: | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.52.0-noble | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm i -g --force corepack && corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install playwright | |
run: pnpm playwright install | |
working-directory: .e2e | |
- name: Run Playwright tests | |
run: pnpm --filter e2e test:all | |
env: | |
DEPLOY_URL: ${{ github.event.inputs.url || github.event.deployment.payload.web_url || github.event.deployment_status.target_url }} | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: .e2e/playwright-report/ | |
retention-days: 30 |