fix(deploy): bump Envoy sidecar past stale-image gate, expose pod ann… #848
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v2 | |
| env: | |
| MISE_NODE_VERIFY: "false" | |
| - run: mise run setup | |
| - run: mise run check | |
| e2e: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| env: | |
| IS_SANDBOX: "1" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Free disk space | |
| run: | | |
| sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL | |
| sudo docker image prune --all --force | |
| - uses: jdx/mise-action@v2 | |
| env: | |
| MISE_NODE_VERIFY: "false" | |
| - name: Install dependencies | |
| run: mise run setup | |
| - name: Run e2e tests | |
| run: mise run api-server:e2e | |
| - name: Teardown test cluster | |
| if: always() | |
| run: mise run cluster:delete -- --force |