Skip to content

Auth + identity bootstrap #71

Auth + identity bootstrap

Auth + identity bootstrap #71

Workflow file for this run

name: Lint Check
on: [push, pull_request]
jobs:
lint:
name: Lint & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Check Prettier
run: npm run format:check