Skip to content

push: implement a simple tool in bun that serves as a workaround for … #106

push: implement a simple tool in bun that serves as a workaround for …

push: implement a simple tool in bun that serves as a workaround for … #106

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