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 aebadac commit 7afe848Copy full SHA for 7afe848
.github/workflows/test.yml
@@ -64,13 +64,17 @@ jobs:
64
with:
65
runner: ubuntu-22.04
66
node-version: 22.x
67
- workspace: "packages/testcontainers"
+ workspace: "${{ matrix.module }}"
68
- name: Code linting
69
+ working-directory: ${{ matrix.module }}
70
run: npm run lint:ci -- ${{ matrix.module }}
71
72
smoke-test:
73
# only run if there are modules to lint
74
if: ${{ needs.detect-modules.outputs.modules_count > 0 }}
75
+ needs:
76
+ - detect-modules
77
+ - lint
78
name: Smoke test
79
strategy:
80
matrix:
0 commit comments