Skip to content

Commit

Permalink
Fix cache being checked in by changesets (#1103)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey authored Nov 7, 2024
1 parent c0724bb commit 5feb6e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ packages/utils/cache
!**/.vscode/settings.template.json
!**/.vscode/launch.json
!**/.vscode/extensions.json

/cache
2 changes: 1 addition & 1 deletion packages/publisher/test/isAlreadyDeprecated.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { NotNeededPackage } from "@definitelytyped/definitions-parser";
import { isAlreadyDeprecated } from "../src/calculate-versions";

describe("isAlreadyDeprecated", () => {
const shouldSkip = !process.env.CI;
const shouldSkip = !process.env.GITHUB_ACTIONS;

(shouldSkip ? it.skip : it)("should report @types/commander as deprecated", async () => {
const pkg = new NotNeededPackage("@types/commander", "commander", "2.12.2");
Expand Down

0 comments on commit 5feb6e5

Please sign in to comment.