Skip to content

chore: mark root package.json as private to prevent accidental npm pu… #7

chore: mark root package.json as private to prevent accidental npm pu…

chore: mark root package.json as private to prevent accidental npm pu… #7

Workflow file for this run

name: Code Quality
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
- name: Run linter
run: npm run lint:check
- name: Check types
run: npm run lint:types