76 lines
2.3 KiB
YAML
76 lines
2.3 KiB
YAML
name: source-lints
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
# Source-tree lints and build-script unit tests from test/internal/source-lints/.
|
|
# These never touch the built bun binary (no bun:internal-for-testing, no
|
|
# bunExe() spawns), so they can run against a released bun immediately on push
|
|
# instead of waiting for build-bun in every Buildkite test lane.
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "src/**/*.rs"
|
|
- "src/**/*.classes.ts"
|
|
- "src/codegen/class-definitions.ts"
|
|
- "src/jsc/bindings/**"
|
|
- "packages/bun-types/redis.d.ts"
|
|
- "scripts/build/**"
|
|
- "scripts/glob-sources.ts"
|
|
- "scripts/utils.mjs"
|
|
- ".buildkite/ci.mjs"
|
|
- "rust-toolchain.toml"
|
|
- "test/harness.ts"
|
|
- "test/tsconfig.json"
|
|
- "test/_util/**"
|
|
- "test/internal/source-lints/**"
|
|
- ".github/workflows/source-lints.yml"
|
|
- ".github/actions/setup-bun/**"
|
|
pull_request:
|
|
paths:
|
|
- "src/**/*.rs"
|
|
- "src/**/*.classes.ts"
|
|
- "src/codegen/class-definitions.ts"
|
|
- "src/jsc/bindings/**"
|
|
- "packages/bun-types/redis.d.ts"
|
|
- "scripts/build/**"
|
|
- "scripts/glob-sources.ts"
|
|
- "scripts/utils.mjs"
|
|
- ".buildkite/ci.mjs"
|
|
- "rust-toolchain.toml"
|
|
- "test/harness.ts"
|
|
- "test/tsconfig.json"
|
|
- "test/_util/**"
|
|
- "test/internal/source-lints/**"
|
|
- ".github/workflows/source-lints.yml"
|
|
- ".github/actions/setup-bun/**"
|
|
merge_group:
|
|
|
|
env:
|
|
BUN_VERSION: "1.3.14"
|
|
|
|
jobs:
|
|
source-lints:
|
|
name: "Source lints"
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
# PR pushes supersede earlier runs; main commits always run to completion.
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
- name: Setup Bun
|
|
uses: ./.github/actions/setup-bun
|
|
with:
|
|
bun-version: ${{ env.BUN_VERSION }}
|
|
# No `bun install`: every test here imports only built-ins, relative
|
|
# paths, or `harness` (resolved via test/tsconfig.json `paths`), so a
|
|
# bare checkout is sufficient.
|
|
- name: Run source lints
|
|
run: bun test test/internal/source-lints/
|