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 aad2605 commit cf03af0Copy full SHA for cf03af0
.github/workflows/common-test.yml
@@ -21,7 +21,7 @@ permissions:
21
env:
22
DISABLE_PARALLEL_DEPLOY: false
23
REAL_NPM: ${{ inputs.mode == 'global' || inputs.mode == 'local' }}
24
- TEST_MONOREPO: ${{ github.event.inputs.testMonorepo }}
+ TEST_MONOREPO: ${{ inputs.testMonorepo }}
25
node_version: 20
26
27
jobs:
.github/workflows/test-with-real-npm.yml
@@ -25,6 +25,6 @@ jobs:
test:
uses: ./.github/workflows/common-test.yml
with:
28
- mode: ${{ github.event.inputs.mode }}
29
- testMonorepo: ${{ github.event.inputs.testMonorepo }}
+ mode: ${{ inputs.mode }}
+ testMonorepo: ${{ inputs.testMonorepo }}
30
secrets: inherit
0 commit comments