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 c64bc61 commit e4430a4Copy full SHA for e4430a4
.github/workflows/shared-ci.yml
@@ -27,7 +27,7 @@ jobs:
27
# Determine test categories based on whether testing published packages or source code:
28
# - Testing published packages: only run vector tests
29
# - Testing source code: run coverage, vector, and compliance tests
30
- test-category: ${{ fromJSON(inputs.test-published-packages == 'true' && '["vectors"]' || '["coverage", "vectors", "compliance"]') }}
+ test-category: ${{ fromJSON(inputs['test-published-packages'] && '["vectors"]' || '["coverage", "vectors", "compliance"]') }}
31
name: test-${{ matrix.test-category }}-${{ matrix.test-type }}-${{ matrix.node-version }}
32
steps:
33
- name: Checkout code
0 commit comments