Skip to content

Update prettier 3.3.2 → 3.3.3 (patch) #32

Update prettier 3.3.2 → 3.3.3 (patch)

Update prettier 3.3.2 → 3.3.3 (patch) #32

name: Lint and Format Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install pnpm
run: |
npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Run ESLint
run: npm run lint
- name: Run Prettier check
run: npm run prettier:check