Skip to content

Commit ef53499

Browse files
Skip compiling with bun
1 parent 6092950 commit ef53499

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ jobs:
8383
matrix:
8484
js-runtime:
8585
- { name: node, version: 24.x }
86-
- { name: bun, version: 1.3.0 }
8786
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
8887
runs-on: ubuntu-22.04
8988
steps:
@@ -99,9 +98,9 @@ jobs:
9998
workspace: "${{ matrix.module }}"
10099
- name: Compile
101100
run: |
102-
${{ steps.npm-install.outputs.script_cmd }} build --ignore-scripts --workspace packages/testcontainers -- --project tsconfig.json
101+
${{ steps.npm-install.outputs.script_cmd }} run build --ignore-scripts --workspace packages/testcontainers -- --project tsconfig.json
103102
if [ "${{ matrix.module }}" != "testcontainers" ]; then
104-
${{ steps.npm-install.outputs.script_cmd }} build --ignore-scripts --workspace ${{ steps.npm-install.outputs.workspace_path }} -- --project tsconfig.json --noEmit
103+
${{ steps.npm-install.outputs.script_cmd }} run build --ignore-scripts --workspace ${{ steps.npm-install.outputs.workspace_path }} -- --project tsconfig.json --noEmit
105104
fi
106105
107106
smoke-test:
@@ -132,7 +131,7 @@ jobs:
132131
js-runtime-version: ${{ matrix.js-runtime.version }}
133132
workspace: "testcontainers"
134133
- name: Build testcontainers
135-
run: ${{ steps.npm-install.outputs.script_cmd }} build --workspace packages/testcontainers
134+
run: ${{ steps.npm-install.outputs.script_cmd }} run build --workspace packages/testcontainers
136135
- name: Remove dev dependencies
137136
run: npm prune --omit=dev --workspace packages/testcontainers
138137
- name: Run CommonJS module smoke test

0 commit comments

Comments
 (0)