We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02723d commit 22b7f83Copy full SHA for 22b7f83
1 file changed
.github/workflows/tox.yml
@@ -179,12 +179,18 @@ jobs:
179
tox --version
180
coverage --version
181
182
- - name: Set up Node.js
+ - name: Set up Node.js (custom)
183
if: ${{ inputs.node-version-file != '' }}
184
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
185
with:
186
node-version-file: ${{ inputs.node-version-file }}
187
188
+ - name: Set up Node.js
189
+ if: ${{ inputs.node-version-file == '' }}
190
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
191
+ with:
192
+ version: "22"
193
+
194
- name: Run pre
195
if: ${{ inputs.run_pre }}
196
run: ${{ inputs.run_pre }}
0 commit comments