We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e938940 commit d22f402Copy full SHA for d22f402
.github/workflows/test.yml
@@ -96,9 +96,8 @@ jobs:
96
workspace: "${{ matrix.module }}"
97
- name: Compile
98
run: |
99
- if [ "${{ matrix.module }}" = "testcontainers" ]; then
100
- npm run build --workspace packages/testcontainers -- --project tsconfig.json --noEmit
101
- else
+ npm run build --workspace packages/testcontainers -- --project tsconfig.json --noEmit
+ if [ "${{ matrix.module }}" != "testcontainers" ]; then
102
npm run build --workspace ${{ steps.npm-install.outputs.workspace_path }} -- --project tsconfig.json --noEmit
103
fi
104
0 commit comments