Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: ${{ matrix.os }} - node ${{ matrix.node-version }}
strategy:
matrix:
node-version: [20, 22, 24]
node-version: [24]
os: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
- run: npm ci
- uses: ArtiomTr/jest-coverage-report-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: ${{ matrix.os }} - node ${{ matrix.node-version }}
strategy:
matrix:
node-version: [20, 22, 24]
node-version: [24]
os: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
43,407 changes: 20,483 additions & 22,924 deletions dist/cli/index.js

Large diffs are not rendered by default.

38,887 changes: 18,223 additions & 20,664 deletions dist/gha/index.js

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@ import type { Config } from "@jest/types";
const jestConfig: Config.InitialOptions = {
verbose: true,
transform: {
"^.+\\.tsx?$": "ts-jest",
// Transpile TS sources and the ESM-only deps whitelisted below (e.g. @octokit/*)
// down to CommonJS so they can run under jest's CJS runtime.
"^.+\\.[tj]sx?$": ["ts-jest", { isolatedModules: true, allowJs: true }],
},
// By default jest does not transform node_modules. @octokit/rest (and its deps)
// are ESM-only, so whitelist them to be transformed by ts-jest above.
transformIgnorePatterns: [
"node_modules/(?!(@octokit|before-after-hook|universal-user-agent)/)",
],
moduleNameMapper: {
"^@bp/(.*)$": "<rootDir>/src/$1",
},
Expand Down
Loading