-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34a81cb
commit a5d9a88
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_PR_NUM: ${{ github.event.number }} | ||
if: ${{ github.event_name != 'push' }} && github.event.inputs.snapshots != 'true' | ||
if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/bootstrap | ||
|
@@ -116,7 +116,7 @@ jobs: | |
test-e2e-debug: | ||
name: Test E2E UI (Debug) | ||
runs-on: macos-13 | ||
if: ${{ github.event_name != 'push' }} && github.event.inputs.snapshots != 'true' | ||
if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} | ||
needs: | ||
- allure_testops_launch | ||
- build-test-app-and-frameworks | ||
|
@@ -171,7 +171,7 @@ jobs: | |
allure_testops_launch: | ||
name: Launch Allure TestOps | ||
runs-on: macos-13 | ||
if: ${{ github.event_name != 'push' }} && github.event.inputs.snapshots != 'true' | ||
if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} | ||
outputs: | ||
launch_id: ${{ steps.get_launch_id.outputs.launch_id }} | ||
steps: | ||
|
@@ -191,7 +191,7 @@ jobs: | |
name: Build Demo App | ||
runs-on: macos-13 | ||
needs: build-test-app-and-frameworks | ||
if: ${{ github.event_name != 'push' }} && github.event.inputs.snapshots != 'true' | ||
if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/download-artifact@v3 | ||
|
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