Skip to content

refactor(maps): migrate to zip.js with ranged reading #59

refactor(maps): migrate to zip.js with ranged reading

refactor(maps): migrate to zip.js with ranged reading #59

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 1
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Cache bun install cache
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }}
restore-keys: bun-${{ runner.os }}-
- name: Install dependencies
run: bun install --frozen-lockfile
# No Postgres/Supabase/S3 services needed: the DB is an ephemeral in-memory PGlite started by
# the test script, and S3/Supabase are faked (see .env.test).
- name: Unit tests
run: bun run test:unit
- name: Integration tests
run: bun run test:integration