Skip to content

docs: add contributor guide and automation #13

docs: add contributor guide and automation

docs: add contributor guide and automation #13

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run typecheck
- run: pnpm run test
- run: pnpm pack --pack-destination /tmp/npm-pack
- run: ls -la /tmp/npm-pack