Big rework #22
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: Frontend QA | |
| on: | |
| pull_request: | |
| paths: | |
| - "frontend/**" | |
| push: | |
| paths: | |
| - "frontend/**" | |
| branches: | |
| - main | |
| jobs: | |
| check-qa: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Retrieve source code | |
| uses: actions/checkout@v5 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: frontend/package.json | |
| cache: yarn | |
| cache-dependency-path: frontend/yarn.lock | |
| - name: Install dependencies | |
| working-directory: frontend | |
| run: yarn install --frozen-lockfile | |
| - name: Check linting | |
| working-directory: frontend | |
| run: yarn lint-check | |
| - name: Check formatting | |
| working-directory: frontend | |
| run: yarn format-check | |
| - name: Check typing | |
| working-directory: frontend | |
| run: yarn type-check |