GitHub OIDC - Bundle Analysis
Similar to our Codecov Action we provide support for OIDC authenticated uploads on while running in GitHub Actions.
OIDC Configuration Example
For users withOpenID Connect (OIDC) enabled, setting theuploadToken is not necessary. You can use OIDC with theoidc configuration as following.
// vite.config.jsimport { defineConfig } from "vite";import { codecovVitePlugin } from "@codecov/vite-plugin";export default defineConfig({ plugins: [ // Put the Codecov vite plugin after all other plugins codecovVitePlugin({ enableBundleAnalysis: true, bundleName: "example-vite-bundle", oidc: { useGitHubOIDC: true, }, }), ],});Updated about 1 month ago