Skip to content

contributing: update guide for non-Linux (#49) #110

contributing: update guide for non-Linux (#49)

contributing: update guide for non-Linux (#49) #110

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.9
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- run: pnpm install --frozen-lockfile --child-concurrency=10
- run: cp wrangler.toml.example wrangler.toml
- run: pnpm run typecheck
- run: pnpm test