Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dc16f26

Browse files
committed
Add core to integration test
1 parent 8982156 commit dc16f26

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/integration.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ jobs:
88
- id: output-set
99
uses: actions/github-script@master
1010
with:
11-
script: return 'test'
11+
script: return core.getInput('input-value')
1212
result-encoding: string
13+
input-value: output
1314
- run: |
14-
if [[ "${{steps.output-set.outputs.result}}" != "test" ]]; then
15+
if [[ "${{steps.output-set.outputs.result}}" != "output" ]]; then
1516
exit 1
1617
fi

0 commit comments

Comments
 (0)