Skip to content

Add compile.ts mutation oracle (interpreter-parity battery) #91

Add compile.ts mutation oracle (interpreter-parity battery)

Add compile.ts mutation oracle (interpreter-parity battery) #91

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
# Cancel superseded runs on the same ref (e.g. rapid PR pushes).
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
verify:
name: lint · typecheck · test · build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
# bun-version is read from package.json "packageManager" (bun@1.3.13) automatically.
- name: Setup Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
# --ignore-scripts blocks dependency lifecycle scripts (the preinstall/postinstall
# vector used by Shai-Hulud-class worms). Safe here: the native deps ship prebuilt
# binaries via os/cpu-constrained optionalDependencies with no lifecycle scripts.
- name: Install dependencies
run: bun install --frozen-lockfile --ignore-scripts
# Fail if install mutated the lockfile (frozen install already forbids it; this
# makes a tampered/desynced bun.lock an explicit, visible failure).
- name: Verify lockfile is unchanged
run: git diff --exit-code bun.lock
- name: Lint (biome)
run: bun run lint
# Type lane: type-checks all sources, the *.test.ts files, and the *.test-d.ts
# type-level assertions (expect-type / @ts-expect-error) via tsgo
# (@typescript/native-preview). Resolves on linux-x64 under --ignore-scripts
# because the platform binary ships as an os/cpu-constrained optionalDependency.
- name: Typecheck
run: bun run test:type
- name: Build (rolldown)
run: bun run build
# Runs unit + the real-tsgo integration tests; coverage is reported (text + lcov),
# not gated on a threshold.
- name: Test with coverage
run: bun run test:coverage
- name: Upload coverage (lcov)
if: ${{ always() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: coverage-lcov
path: coverage/lcov.info
if-no-files-found: warn
retention-days: 14
# Mutation score gate: thresholds.break = 80 in each package's stryker.config.mjs
# fails the job when the score drops below 80%. Always a full run (incremental
# mode stays disabled, see the config comments) using the in-repo runner at
# tools/stryker-bun-runner.
# Runs only after the verify lane passes (needs: verify) so the 3-package matrix
# does not burn CI time on changes that already fail lint/typecheck/test/build.
mutation:
name: mutation (${{ matrix.package }})
needs: verify
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
package: [tskm, compiler, vite]
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Setup Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
- name: Install dependencies
run: bun install --frozen-lockfile --ignore-scripts
# The vite package resolves @tskm/compiler through its dist exports inside
# Stryker's sandbox (the tsconfig-paths source fallback only works from the
# real repo layout), so dependencies must be built before mutating.
- name: Build (rolldown)
run: bun run build
- name: Mutation test
run: bun run --cwd packages/${{ matrix.package }} test:mutation
# Machine-readable record (json reporter) for survived-mutant investigation
# and history comparison across runs.
- name: Upload mutation report
if: ${{ always() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: mutation-report-${{ matrix.package }}
path: packages/${{ matrix.package }}/reports/mutation/mutation.json
if-no-files-found: warn
retention-days: 14