feat(cli): use fetchLogs for resource tags #9394
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: End-to-end tests | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "docs/**" | |
pull_request: | |
paths-ignore: | |
- "docs/**" | |
jobs: | |
main: | |
name: Run end-to-end tests | |
runs-on: depot-ubuntu-22.04-16 | |
services: | |
postgres: | |
image: postgres:12.1-alpine | |
ports: | |
- 5432:5432 | |
# needed because the postgres container does not provide a healthcheck | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Build | |
uses: ./.github/actions/build | |
- name: Install end-to-end testing dependencies | |
working-directory: ./e2e | |
run: pnpm install | |
- name: Install Playwright Dependencies | |
working-directory: ./e2e | |
run: pnpm run playwright-install | |
- name: Clean end-to-end project | |
working-directory: ./e2e | |
run: pnpm run clean | |
- name: Build end-to-end project | |
working-directory: ./e2e | |
run: pnpm run build | |
- name: Outdated files, run `pnpm run build` in `e2e` and commit them | |
uses: ./.github/actions/require-empty-diff | |
- name: Run tests | |
timeout-minutes: 15 | |
env: | |
DATABASE_URL: "postgres://postgres@localhost:5432/postgres" | |
working-directory: ./e2e | |
run: pnpm run test:ci |