Skip to content

Commit

Permalink
Added test for non existing stack
Browse files Browse the repository at this point in the history
  • Loading branch information
goruha committed Dec 21, 2023
1 parent 532edd6 commit c27c6a8
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/test-negative.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Test non-existent component stack
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:
test:
runs-on: ubuntu-latest
continue-on-error: true
outputs:
result: ${{ steps.current.outputs.value }}
outcome: ${{ steps.current.outcome }}
steps:
- name: Setup terraform
uses: hashicorp/setup-terraform@v2
- name: Setup atmos
uses: cloudposse/[email protected]
with:
install-wrapper: false
- name: Checkout
uses: actions/checkout@v3

- uses: ./
id: current
with:
component: bar
stack: core-ue1-dev
settings-path: settings.level1.level2.level3.secrets-arn

assert:
runs-on: ubuntu-latest
needs: [test]
steps:
- uses: nick-fields/assert-action@v1
with:
expected: ""
actual: ${{ needs.test.outputs.result }}

- uses: nick-fields/assert-action@v1
with:
expected: success
actual: ${{ needs.test.outputs.outcome }}

0 comments on commit c27c6a8

Please sign in to comment.