Skip to content

build(deps): bump nanoid from 3.3.7 to 3.3.8 (#82) #210

build(deps): bump nanoid from 3.3.7 to 3.3.8 (#82)

build(deps): bump nanoid from 3.3.7 to 3.3.8 (#82) #210

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.0
- 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