Skip to content

Add checkstyle based on yarn prettier:fix #2

Add checkstyle based on yarn prettier:fix

Add checkstyle based on yarn prettier:fix #2

Workflow file for this run

name: PR Style Check
on:
pull_request:
paths:
- 'frontend/**'
jobs:
style-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: yarn install
working-directory: ./frontend
- name: Run ESLint
run: yarn lint
working-directory: ./frontend
- name: Run Prettier check
run: yarn prettier --check .
working-directory: ./frontend