Build(deps-dev): Bump @typescript-eslint/parser from 6.7.0 to 6.9.1 in /frontend #541
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-Test Pipeline | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "**" | |
branches: | |
- main | |
pull_request: | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Test Runner Image | |
run: docker build -f ./e2e/Dockerfile -t zwoo-e2e . | |
- name: Prepare Container | |
run: docker run -d --privileged -v ./frontend/uploads:/app/frontend/uploads --name test-runner zwoo-e2e | |
- name: Run E2E-Tests | |
run: docker exec -i test-runner sh /app/e2e/run-tests.sh ${{ secrets.CYPRESS_KEY }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: e2e-artifacts | |
path: | | |
./frontend/uploads |