chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.53.0 to 8.53.1 in /frontend/interactEM #495
Workflow file for this run
This file contains hidden or 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: Integration Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| integration: | |
| runs-on: ubuntu-latest | |
| env: | |
| DOCKER_BUILDKIT: 1 | |
| XDG_RUNTIME_DIR: /tmp/podman-run | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install podman | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y podman | |
| - name: Start podman socket service | |
| run: | | |
| # Ensure the runtime directory exists and is writable | |
| mkdir -p "$XDG_RUNTIME_DIR/podman" | |
| # Start the rootless podman service socket in the configured runtime dir | |
| podman system service --time=0 unix://$XDG_RUNTIME_DIR/podman/podman.sock >/tmp/podman-service.log 2>&1 & | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| cache-dependency-path: frontend/interactEM/package-lock.json | |
| - name: Install frontend dependencies | |
| working-directory: frontend/interactEM | |
| run: | | |
| npm ci | |
| npx playwright install --with-deps | |
| - name: Start docker compose | |
| run: make setup && make docker-up | |
| - name: Run integration test suite | |
| run: make integration-test | |
| - name: Show docker compose logs on failure | |
| if: failure() | |
| run: docker compose logs --no-color |