github.com/nektos/act@v0.2.63/pkg/runner/testdata/uses-composite-with-inputs/composite/action.yml (about) 1 name: "composite" 2 description: "composite" 3 4 inputs: 5 composite-input: 6 description: "value" 7 required: true 8 9 runs: 10 using: "composite" 11 steps: 12 - name: test input value 13 run: | 14 echo "input value 1=${{ inputs.composite-input }}" 15 [[ "${{ inputs.composite-input == 'value' }}" = "true" ]] || exit 1 16 shell: bash 17 - uses: nektos/act-test-actions/js@main 18 - name: test input value again 19 run: | 20 echo "input value 2=${{ inputs.composite-input }}" 21 [[ "${{ inputs.composite-input == 'value' }}" = "true" ]] || exit 1 22 shell: bash