Skip to content

fix(cicd): can't use isolatedDeclarations #3

fix(cicd): can't use isolatedDeclarations

fix(cicd): can't use isolatedDeclarations #3

Workflow file for this run

name: CI
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Type check
run: bun run type-check
- name: Lint
run: bun run lint
- name: Run tests
run: bun run test