Bump the npm-modules-updates-for-tests group in /frontend/apps/remark42 with 38 updates #300
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: [master] | |
paths: | |
- "frontend/apps/remark42/**" | |
- "frontend/e2e/**" | |
- "frontend/Dockerfile.e2e" | |
pull_request: | |
branches: [master] | |
paths: | |
- "frontend/apps/remark42/**" | |
- "frontend/e2e/**" | |
- "frontend/Dockerfile.e2e" | |
jobs: | |
tests: | |
name: Tests | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build & run containers | |
id: tests | |
run: COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose -f compose-e2e-test.yml up --build --quiet-pull --exit-code-from tests | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: ./playwright-report/ | |
retention-days: 30 |