Skip to content

chore: bump version to 0.8.7 #58

chore: bump version to 0.8.7

chore: bump version to 0.8.7 #58

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
name: Build & Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [20, 22]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Type-check
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Test Coverage
if: matrix.os == 'ubuntu-latest' && matrix.node-version == 22
run: npm run test:coverage