Skip to content

Profile Backend and Frontend #195

Profile Backend and Frontend

Profile Backend and Frontend #195

Workflow file for this run

name: Lint and style checks
on:
pull_request:
branches:
main
jobs:
backend:
name: Backend lint and style check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- working-directory: backend
run: |
npm ci
npm run lint-check
frontend:
name: Frontend lint and style check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- working-directory: frontend
run: |
npm ci
npm run lint-check