Skip to content

feat: Add code quality check workflow #1

feat: Add code quality check workflow

feat: Add code quality check workflow #1

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@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: cd frontend && npm run prettier-check