chore(nimbus): Update External Configs #1496
This file contains hidden or 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: Nimbus UI Integration Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| merge_group: | |
| types: [checks_requested] | |
| jobs: | |
| test: | |
| name: "Desktop Nimbus UI (Release Firefox)" | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| env: | |
| FIREFOX_CHANNEL: release | |
| PYTEST_ARGS: -m nimbus_ui -n 4 --reruns 1 --base-url https://nginx/nimbus/ | |
| PYTEST_BASE_URL: https://nginx/nimbus/ | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ./.github/actions/check-changed-paths | |
| id: check-paths | |
| with: | |
| paths: "experimenter/ application-services/" | |
| - uses: ./.github/actions/setup-cached-build | |
| if: steps.check-paths.outputs.should-run == 'true' | |
| - uses: ./.github/actions/run-integration-test | |
| if: steps.check-paths.outputs.should-run == 'true' | |
| with: | |
| artifact-name: nimbus-ui-test-report |