Skip to content

ENH: Clarify Draft State for Tag Group Dialog #72

ENH: Clarify Draft State for Tag Group Dialog

ENH: Clarify Draft State for Tag Group Dialog #72

Workflow file for this run

name: Lint & Format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: ESLint & Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Check Prettier formatting
run: npm run format:check
- name: TypeScript type check
run: npx tsc --noEmit