This repository was archived by the owner on Dec 10, 2025. It is now read-only.
chore(deps-dev): Bump @testing-library/jest-dom from 6.6.3 to 6.6.4 in the react group #126
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: Check Frontend | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - ready_for_review | |
| - reopened | |
| - synchronize | |
| workflow_dispatch: {} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| DEBUG: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: "20" | |
| - name: Install | |
| run: yarn | |
| working-directory: ./frontend/code | |
| - name: Do a build of the frontend | |
| run: yarn build | |
| working-directory: ./frontend/code | |
| env: | |
| ESLINT_NO_DEV_ERRORS: true | |
| # @TODO: Figure out more ways to verify that the frontend app actually runs, e.g. in a browser |