[3.8] Fix reportsDashboards edit spec flakiness with API intercepts #1501
Workflow file for this run
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: Query Insights Dashboards Release tests workflow in Bundled OpenSearch Dashboards | |
| on: | |
| pull_request: | |
| branches: [ '**' ] | |
| jobs: | |
| changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| tests: ${{ steps.filter.outputs.tests }} | |
| steps: | |
| - uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2 | |
| id: filter | |
| with: | |
| filters: | | |
| tests: | |
| - 'cypress/**/query-insights-dashboards/**' | |
| - '.github/workflows/release-e2e-workflow-template.yml' | |
| tests: | |
| needs: changes | |
| if: ${{ needs.changes.outputs.tests == 'true' }} | |
| uses: ./.github/workflows/release-e2e-workflow-template.yml | |
| with: | |
| test-name: Query Insights Dashboards | |
| test-command: bash scripts/query-insights/run-tests.sh |