Add core to integration test

This commit is contained in:
Jonathan Clem
2020-03-24 14:02:45 -04:00
parent 8982156783
commit dc16f26602

View File

@@ -8,9 +8,10 @@ jobs:
- id: output-set
uses: actions/github-script@master
with:
script: return 'test'
script: return core.getInput('input-value')
result-encoding: string
input-value: output
- run: |
if [[ "${{steps.output-set.outputs.result}}" != "test" ]]; then
if [[ "${{steps.output-set.outputs.result}}" != "output" ]]; then
exit 1
fi