Test structured outputs #119
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test structured outputs | |
on: | |
# # Uncomment when test added first time to register workflow and comment it back after workflow would be registered | |
# # | |
# # Added pull_request to register workflow from the PR. | |
# # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo | |
# pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
run: echo "Do setup" | |
test: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
needs: [setup] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: yarn | |
- name: install dependencies | |
run: |- | |
yarn add ci | |
yarn build | |
- uses: ./ | |
id: current | |
with: | |
query: . | |
config: | | |
test: | |
foo: | |
bar | |
bar: | |
test: | |
foo | |
outputs: | |
test: "${{ steps.current.outputs.test }}" | |
bar: "${{ steps.current.outputs.bar }}" | |
assert: | |
runs-on: ubuntu-latest | |
needs: [test] | |
steps: | |
- uses: nick-fields/assert-action@v2 | |
with: | |
expected: '{"foo":"bar"}' | |
actual: "${{ needs.test.outputs.test }}" | |
- uses: nick-fields/assert-action@v2 | |
with: | |
expected: '{"test":"foo"}' | |
actual: "${{ needs.test.outputs.bar }}" | |
- uses: nick-fields/assert-action@v2 | |
with: | |
expected: 'foo' | |
actual: ${{ fromJSON(needs.test.outputs.bar).test }} | |
teardown: | |
runs-on: ubuntu-latest | |
needs: [assert] | |
if: ${{ always() }} | |
steps: | |
- name: Tear down | |
run: echo "Do Tear down" |