We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6333a5 commit fc897ffCopy full SHA for fc897ff
1 file changed
.github/workflows/unitTestsLinux.yml
@@ -1,5 +1,11 @@
1
on:
2
workflow_call:
3
+ inputs:
4
+ skipTsDepCheck:
5
+ type: boolean
6
+ required: false
7
+ default: false
8
+ description: skip `prevent-typescript-dependency`. Use it for devDeps that ship TS
9
10
jobs:
11
determine-node-versions:
@@ -14,6 +20,7 @@ jobs:
14
20
nodeDisableCurrent: ${{ vars.UT_DISABLE_NODE_CURRENT }} # default is falsy
15
21
16
22
prevent-typescript-dependency:
23
+ if: ${{ inputs.skipTsDepCheck == 'false' }}
17
24
uses: salesforcecli/github-workflows/.github/workflows/preventTypescriptDep.yml@main
18
25
19
26
linux-unit-tests:
0 commit comments