Skip to content

chore: remove node version constraints from npm configs #3

chore: remove node version constraints from npm configs

chore: remove node version constraints from npm configs #3

Workflow file for this run

name: Lint and Format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint and Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8.15.4 # Using the version from packageManager in package.json
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.3.0'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check formatting
run: biome format --write=false .
- name: Run linting
run: biome check .