Skip to content

Merge pull request #646 from UTDNebula/fix/cannot-press-next-button-d… #1266

Merge pull request #646 from UTDNebula/fix/cannot-press-next-button-d…

Merge pull request #646 from UTDNebula/fix/cannot-press-next-button-d… #1266

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 Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Run npm install
run: npm ci
- name: Run ESLint
run: npm run lint:check
- name: Run Prettier
run: npm run format:check