Skip to content

Commit

Permalink
ci: troubleshoot ws plugin issues with api-extractor v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hotell committed Oct 23, 2024
1 parent 967ec7c commit 25c6570
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/workspace-plugin/src/executors/generate-api/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ function normalizeOptions(schema: GenerateApiExecutorSchema, context: ExecutorCo
};

function isCI() {
console.log({ ci: process.env.CI, gh: process.env.GITHUB_ACTIONS });
console.log({ env: JSON.stringify(process.env, null, 2) });
console.log({ ci: process.env.CI, tfBuild: process.env.TF_BUILD, gh: process.env.GITHUB_ACTIONS });
// console.log({ env: JSON.stringify(process.env, null, 2) });
return (
(process.env.CI && process.env.CI !== 'false') ||
process.env.TF_BUILD === 'true' ||
Expand Down

0 comments on commit 25c6570

Please sign in to comment.