Skip to content

✨ Adding a token getter to get service account tokens #2628

✨ Adding a token getter to get service account tokens

✨ Adding a token getter to get service account tokens #2628

Workflow file for this run

name: e2e
on:
workflow_dispatch:
pull_request:
merge_group:
push:
branches:
- main
jobs:
extension-developer-e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run the extension developer e2e test
run: |
make extension-developer-e2e
e2e-kind:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run e2e tests
run: ARTIFACT_PATH=/tmp/artifacts make test-e2e
- uses: cytopia/upload-artifact-retry-action@v0.1.7
if: failure()
with:
name: e2e-artifacts
path: /tmp/artifacts/
- uses: codecov/codecov-action@v4
with:
disable_search: true
files: e2e-cover.out
flags: e2e
token: ${{ secrets.CODECOV_TOKEN }}