Bump js-yaml from 3.14.1 to 3.14.2 in /frontend #681
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: Lint codebase | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| paths: | |
| - "frontend/**" | |
| - "backend/**" | |
| pull_request: | |
| branches: | |
| - dev | |
| paths: | |
| - "frontend/**" | |
| - "backend/**" | |
| jobs: | |
| run-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Filter changed files | |
| uses: dorny/paths-filter@v2 | |
| id: changes | |
| with: | |
| filters: | | |
| frontend: | |
| - "frontend/**" | |
| backend: | |
| - "backend/**" | |
| - name: Set up Node.js | |
| if: steps.changes.outputs.frontend == 'true' || steps.changes.outputs.backend == 'true' | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "18.18.2" | |
| cache: "yarn" | |
| cache-dependency-path: | | |
| frontend/yarn.lock | |
| backend/yarn.lock | |
| - name: Install Node.js dependencies | |
| if: steps.changes.outputs.frontend == 'true' || steps.changes.outputs.backend == 'true' | |
| run: yarn --cwd ./frontend --prefer-offline && yarn --cwd ./backend --prefer-offline | |
| - name: Generate Prisma Client | |
| if: steps.changes.outputs.backend == 'true' | |
| working-directory: ./backend | |
| run: npx prisma generate | |
| - name: Lint frontend | |
| if: always() &&steps.changes.outputs.frontend == 'true' | |
| working-directory: ./frontend | |
| run: yarn lint | |
| - name: Lint backend | |
| if: always() &&steps.changes.outputs.backend == 'true' | |
| working-directory: ./backend | |
| run: yarn lint |