Skip to content

Checking formatting & Linting #5

Checking formatting & Linting

Checking formatting & Linting #5

Workflow file for this run

name: Formatting & Linting
run-name: Checking formatting & Linting
on:
pull_request:
branches: [main]
jobs:
Linting-formatting:
runs-on: ubuntu-latest
steps:
- name: Copying the code
uses: actions/checkout@v4
- name: Installing dependencies
run: npm install
- name: Generating prisma client
run: npm run prod:prisma-client
- name: Fixing the formatting
run: npm run format:fix
- name: Checking the formatting
run: npm run format:check
- name: Linting the code
run: npm run lint