mirror of
https://github.com/actions/github-script.git
synced 2026-02-07 19:47:26 +00:00
Add core to integration test
This commit is contained in:
parent
8982156783
commit
dc16f26602
1 changed files with 3 additions and 2 deletions
5
.github/workflows/integration.yml
vendored
5
.github/workflows/integration.yml
vendored
|
|
@ -8,9 +8,10 @@ jobs:
|
||||||
- id: output-set
|
- id: output-set
|
||||||
uses: actions/github-script@master
|
uses: actions/github-script@master
|
||||||
with:
|
with:
|
||||||
script: return 'test'
|
script: return core.getInput('input-value')
|
||||||
result-encoding: string
|
result-encoding: string
|
||||||
|
input-value: output
|
||||||
- run: |
|
- run: |
|
||||||
if [[ "${{steps.output-set.outputs.result}}" != "test" ]]; then
|
if [[ "${{steps.output-set.outputs.result}}" != "output" ]]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue