Skip to content

feat: Add code quality check workflow #4

feat: Add code quality check workflow

feat: Add code quality check workflow #4

Workflow file for this run

name: Code Quality Check
on:
pull_request:
branches:
- main
jobs:
prettier-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout frontend
run: cd frontend
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: npm run prettier-check