refactor(tests): Unify e2e-core and e2e-optional into tests/e2e #6
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: CI Dev | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| pull_request: | |
| branches: | |
| - dev | |
| workflow_dispatch: | |
| inputs: | |
| run_optional: | |
| description: "Run optional e2e suites (overrides repo variable)" | |
| required: false | |
| default: "false" | |
| type: choice | |
| options: | |
| - "false" | |
| - "true" | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| uses: ./.github/workflows/reusable-ci.yml | |
| with: | |
| stream: dev | |
| run_e2e: true | |
| run_optional: ${{ fromJSON((github.event_name == 'workflow_dispatch' && github.event.inputs.run_optional) || vars.CI_RUN_OPTIONAL || 'false') }} | |
| go_version: "1.24.13" |