Skip to content

ci: npm trusted publishing (OIDC), no NPM_TOKEN #100

ci: npm trusted publishing (OIDC), no NPM_TOKEN

ci: npm trusted publishing (OIDC), no NPM_TOKEN #100

Workflow file for this run

name: CI
on:
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@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24"
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.11"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check (lint + format + type check)
run: bun run check
- name: Run tests
run: bun run test
- name: Build
run: bun run build