fix: playwright deps #2
Workflow file for this run
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 | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
build: | |
name: Run e2e tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
run: | | |
corepack enable | |
pnpm install | |
- name: Build docker compose | |
run: | | |
pnpm run test:e2e:build:directus | |
- name: Build dashboard repo | |
run: | | |
pnpm run test:e2e:build:dash | |
- name: Run tests | |
run: | | |
pnpm run test:e2e:run |