Skip to content

Change version number from 3 to 2.3 #97

Change version number from 3 to 2.3

Change version number from 3 to 2.3 #97

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
cache: "pnpm"
- name: Install deps
run: |
pnpm install
- name: Lint
run: |
pnpm run check
- name: Build
run: |
pnpm build
# somewhat atypical, but typecheck must occur after build because the packages
# depend on the build output of each other
- name: Typecheck
run: |
pnpm run typecheck