Skip to content

Commit

Permalink
Fix droid test run (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
levonet authored Aug 19, 2024
1 parent b9751a0 commit a4b8179
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/droid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,23 @@ jobs:
description: 'true'

- if: ${{ steps.c-3po.outputs.is-hello }}
run: node ./test/assets/echo.js
env:
INPUTS_ARG1: "${{ steps.c-3po.outputs.has-hello }}"
INPUTS_ARG2: ", it is you, it Is You!"
with:
script: |
const args = [process.env.INPUTS_ARG1, process.env.INPUTS_ARG2]
core.info(args.join(''))
- if: ${{ steps.c-3po.outputs.is-chances && steps.c-3po.outputs.has-chances-survival }}
run: node ./test/assets/echo.js"
env:
INPUTS_ARG1: "R2 says the chances of survival are"
INPUTS_ARG1: "R2 says the chances of survival are "
INPUTS_ARG2: "${{ steps.c-3po.outputs.has-chances-survival }}"
INPUTS_ARG3: "... to one"
with:
script: |
const args = [process.env.INPUTS_ARG1, process.env.INPUTS_ARG2, process.env.INPUTS_ARG3]
core.info(args.join(''))
- if: ${{ steps.c-3po.outputs.is-chances && steps.c-3po.outputs.has-chances-win > 0 }}
run: echo "We'll take the next chance, and the next."
Expand Down
5 changes: 0 additions & 5 deletions test/assets/echo.js

This file was deleted.

0 comments on commit a4b8179

Please sign in to comment.