simplify workflow for only testing e2e tests #5
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 Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
push: | |
paths-ignore: | |
- 'docs/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Start the docker container for E2E | |
run: | | |
docker-compose pull | |
docker compose -f docker-compose-debug.yaml up | |
- name: Wait for grafana to start | |
uses: nev7n/wait_for_response@v1 | |
with: | |
url: 'http://localhost:3099/' | |
responseCode: 200 | |
timeout: 20000 | |
interval: 500 | |
- name: Install Playwright Browsers | |
run: yarn playwright install --with-deps | |
- name: Run E2E tests | |
run: yarn test:e2e | |
- name: Run E2E artifacts | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 | |
- name: Stop the docker container | |
if: always() | |
run: docker-compose down |