Changed Dev 1 to Aayush Patel in README.md #20
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: Lint codebase | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "frontend/**" | |
- "backend/typescript/**" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "frontend/**" | |
- "backend/typescript/**" | |
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/**" | |
typescript-backend: | |
- "backend/typescript/**" | |
- name: Set up Node.js | |
if: steps.changes.outputs.frontend == 'true' || steps.changes.outputs.typescript-backend == 'true' | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18.18.2" | |
cache: "yarn" | |
cache-dependency-path: | | |
frontend/yarn.lock | |
backend/typescript/yarn.lock | |
- name: Install Node.js dependencies | |
if: steps.changes.outputs.frontend == 'true' || steps.changes.outputs.typescript-backend == 'true' | |
run: yarn --cwd ./frontend --prefer-offline && yarn --cwd ./backend/typescript --prefer-offline | |
- name: Generate Prisma Data Models | |
working-directory: ./backend/typescript | |
run: npx prisma generate && yarn tsc | |
- name: Lint frontend | |
if: steps.changes.outputs.frontend == 'true' | |
working-directory: ./frontend | |
run: yarn lint | |
- name: Lint TypeScript backend | |
if: steps.changes.outputs.typescript-backend == 'true' | |
working-directory: ./backend/typescript | |
run: yarn lint |