## Description - This PR handles the proper click of No & Yes in the confirmation modals during a query/js object run - Also updated the ci-test-limited.yml for Installing dependencies from right path - GitImport - 5th case - flakyfix #### PR fixes following issue(s) - Unskips the JsOnload3 spec - JSFunctionExecution_spec.ts - flaky fix #### Type of change - Script update ## Testing > #### How Has This Been Tested? - [X] Cypress run ## Checklist: #### QA activity: - [X] Added `Test Plan Approved` label aftee test changes were reviewed
50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
YAML
name: Build Client, Server & Run only Cypress
|
|
|
|
on:
|
|
# This workflow can be triggered manually from the GitHub Actions page
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
server-build:
|
|
name: server-build
|
|
uses: ./.github/workflows/server-build.yml
|
|
secrets: inherit
|
|
with:
|
|
pr: 0
|
|
skip-tests: "true"
|
|
|
|
client-build:
|
|
name: client-build
|
|
uses: ./.github/workflows/client-build.yml
|
|
secrets: inherit
|
|
with:
|
|
pr: 0
|
|
skip-tests: "true"
|
|
|
|
rts-build:
|
|
name: rts-build
|
|
uses: ./.github/workflows/rts-build.yml
|
|
secrets: inherit
|
|
with:
|
|
pr: 0
|
|
|
|
build-docker-image:
|
|
needs: [ client-build, server-build, rts-build ]
|
|
# Only run if the build step is successful
|
|
if: success()
|
|
name: build-docker-image
|
|
uses: ./.github/workflows/build-docker-image.yml
|
|
secrets: inherit
|
|
with:
|
|
pr: 0
|
|
|
|
ci-test-limited:
|
|
needs: [ build-docker-image ]
|
|
# Only run if the build step is successful
|
|
if: success()
|
|
name: ci-test-limited
|
|
uses: ./.github/workflows/ci-test-limited.yml
|
|
secrets: inherit
|
|
with:
|
|
pr: 0
|