File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,23 @@ name: On-Demand Unit Testing
33on :
44 workflow_dispatch :
55 inputs :
6- ref :
7- description : ' Branch or tag to test '
6+ node-version :
7+ description : Node.js version to use.
88 required : true
9- default : ' main'
9+ type : choice
10+ options :
11+ - ' 18'
12+ - ' 20'
13+ - ' 22'
14+ - ' 24'
15+ default : ' 24'
1016
1117jobs :
1218 test :
13- name : On-Demand Unit Testing on ${{ inputs.ref }}
14- uses : WJSoftware/cicd/.github/workflows/npm-test.yml@v0.2
19+ name : On-Demand Unit Testing on Node.js v ${{ inputs.node-version }}
20+ uses : WJSoftware/cicd/.github/workflows/npm-test.yml@v0.1.0
1521 secrets : inherit
1622 with :
1723 pwsh : false
1824 build : false
19- ref : ${{ inputs.ref }}
25+ node-version : ${{ inputs.node-version }}
You can’t perform that action at this time.
0 commit comments