Skip to content

Merge pull request #6 from utdfiji/develop #20

Merge pull request #6 from utdfiji/develop

Merge pull request #6 from utdfiji/develop #20

Workflow file for this run

name: Lint and Formatting Check
on: push
jobs:
main:
name: Run ESLint + Prettier
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up PNPM
uses: pnpm/action-setup@v4
with:
version: 9
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install Next for ESLint and Prettier
run: pnpm install
- name: Run ESLint
run: pnpm lint:check
- name: Run Prettier
run: pnpm format:check