Skip to content

Commit 06f76ab

Browse files
committed
Trivial
1 parent e727618 commit 06f76ab

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55

66
jobs:
7+
78
test_return:
89
runs-on: ubuntu-latest
910
steps:
@@ -19,6 +20,7 @@ jobs:
1920
output="${{steps.output-set.outputs.result}}"
2021
[[ "$output" != "$expected" ]] && echo "::error::❌ Expected '$expected', got '$output'" && exit 1
2122
echo "✅ Test passed, outputs.result: ${{toJSON(steps.output-set.outputs.result)}}"
23+
2224
test_context:
2325
runs-on: ubuntu-latest
2426
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The return value of the script will be in the step's outputs under the "result"
2626
2727
### Inspired by GitHub Script
2828
29-
This ElixirScript action is based on the amazing [GitHub Script action][github-script],
29+
This Elixir Script action is based on the amazing [GitHub Script action][github-script],
3030
which is primarily built around Javascript.
3131
Elixir Script adapts its interfaces and functionality to the Elixir environment,
3232
aiming to provide a seamless experience for Elixir developers.

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inputs:
1313
default: ${{ runner.debug == '1' }}
1414
outputs:
1515
result:
16-
description: The return value of the script, stringified with `JSON.stringify`
16+
description: The stringified return value of the script
1717
runs:
1818
using: docker
1919
image: Dockerfile

0 commit comments

Comments
 (0)