Skip to content

docs: update README to include a direct link to the full reference ex… #11

docs: update README to include a direct link to the full reference ex…

docs: update README to include a direct link to the full reference ex… #11

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: pnpm
node-version: 20
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm exec tsc --noEmit
- name: Integration tests
run: pnpm test:int
- name: Build
run: pnpm build