(config: Record<string, unknown>)
| 23 | }); |
| 24 | |
| 25 | const createBuildOptions = (config: Record<string, unknown>) => ({ |
| 26 | files: {}, |
| 27 | entrypoint: 'docker.io/library/nginx:1.27', |
| 28 | workPath: '/', |
| 29 | repoRootPath: '/', |
| 30 | config, |
| 31 | }); |
| 32 | |
| 33 | /** Build a fake (unsigned) OIDC JWT with the given claims. */ |
| 34 | function fakeOidcToken(claims: Record<string, unknown> = {}) { |
no outgoing calls
no test coverage detected