Skip to content

Feature/smoother collapsing tiles #560

Feature/smoother collapsing tiles

Feature/smoother collapsing tiles #560

Workflow file for this run

name: Check Formatting
on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'validator/**'
jobs:
eslint:
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: 18
- name: Install Node.js Dependencies
run: npm ci
- name: Generate Prisma Client
run: npm run prisma:generate
- name: Run ESLint
run: npm run lint:check
- name: Run Prettier
run: npm run format:check