This repository was archived by the owner on Sep 11, 2025. It is now read-only.
chore(deps): Update dependency @vitejs/plugin-react to v5 #836
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-runtime-integration-tests | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| paths: | |
| - .github/workflows/ci-runtime-integration-tests.yml | |
| - runtime/** | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| runtime-integration-tests: | |
| name: test (runtime) | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.25.1 | |
| cache-dependency-path: runtime/go.sum | |
| - name: Setup Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ">=22" | |
| - name: Run Integration Tests | |
| working-directory: runtime | |
| run: make test-integration-ci | |
| - name: Generate Test Summary | |
| if: always() | |
| uses: test-summary/action@v2 | |
| with: | |
| paths: runtime/report.xml |