Skip to content

chore(deps-dev): bump the tooling group across 1 directory with 3 updates #23

chore(deps-dev): bump the tooling group across 1 directory with 3 updates

chore(deps-dev): bump the tooling group across 1 directory with 3 updates #23

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
jobs:
build:
name: lint + typecheck + test + build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: 9
run_install: false
- name: Setup Node 20
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm typecheck
- run: pnpm test
- run: pnpm build