18 lines
504 B
YAML
18 lines
504 B
YAML
on: [push, workflow_dispatch]
|
|
jobs:
|
|
integration-test--firefox:
|
|
runs-on: playwright-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 11.0.0-dev.1005
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 24
|
|
cache: 'pnpm'
|
|
working_directory: e2e
|
|
- run: pnpm install
|
|
working_directory: e2e
|
|
- run: env PROJECT_FILTER=firefox e2e/Taskfile _test
|
|
working_directory: e2e
|