Skip to content

Feature/docs overview #17

Feature/docs overview

Feature/docs overview #17

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- develop
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: ESLint & Prettier Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint