Skip to content

Commit

Permalink
tweak CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed Nov 9, 2023
1 parent 3dc5bb0 commit b4138d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cleanup-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Run Api-Extractor
run: npm run extract-api
env:
CI: false
CI: "false"

- name: Run prettier
run: npm run format
Expand Down
2 changes: 1 addition & 1 deletion config/apiExtractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ map((entryPoint: { dirs: string[] }) => {
});

const extractorResult: ExtractorResult = Extractor.invoke(extractorConfig, {
localBuild: process.env.CI === undefined,
localBuild: process.env.CI === undefined || process.env.CI === "false",
showVerboseMessages: true,
});

Expand Down

0 comments on commit b4138d2

Please sign in to comment.