Skip to content

docs: add code of conduct #63

docs: add code of conduct

docs: add code of conduct #63

Workflow file for this run

name: ci
on:
push:
branches: [trunk]
pull_request:
branches: [trunk]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 21]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- run: echo node `node --version`, pnpm v`pnpm --version`
- run: pnpm install --frozen-lockfile
- run: pnpm --color --recursive --parallel run lint
- run: pnpm --color --recursive run typecheck
- run: pnpm --color run test