Skip to content

docs: restructured README with separate setup guides for new vs exist… #3

docs: restructured README with separate setup guides for new vs exist…

docs: restructured README with separate setup guides for new vs exist… #3

Workflow file for this run

name: Lint and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: pnpm/action-setup@v4
with:
run_install: |
- recursive: true
args: [--no-frozen-lockfile]
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '23.3.0'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run ESLint
run: pnpm run lint
- name: Run Vitest
run: pnpm run test
- name: Run Build
run: pnpm run build