From 4e697cd2031c097ae8ea14e80e8bc928bdf51ea7 Mon Sep 17 00:00:00 2001 From: mshanemc Date: Fri, 7 Jun 2024 16:04:51 -0500 Subject: [PATCH] chore: no cache for perf tests --- .github/workflows/perf.yml | 2 -- src/sfProject.ts | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml index 4e5911400..708c4ee6f 100644 --- a/.github/workflows/perf.yml +++ b/.github/workflows/perf.yml @@ -19,8 +19,6 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 - with: - cache: yarn - uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main with: ignore-scripts: true diff --git a/src/sfProject.ts b/src/sfProject.ts index 68eb7c54b..b7b868a77 100644 --- a/src/sfProject.ts +++ b/src/sfProject.ts @@ -725,7 +725,7 @@ export class SfProject { } } -/** differentiate between the Base PackageDir (path, maybe default) and the Packaging version (path) by whether is has the `package` property */ +/** differentiate between the Base PackageDir (path, maybe default) and the Packaging version (package and maybe a LOT of other fields) by whether is has the `package` property */ export const isPackagingDirectory = (packageDir: PackageDir): packageDir is PackagePackageDir => 'package' in packageDir && typeof packageDir.package === 'string'; export const isNamedPackagingDirectory = (packageDir: NamedPackageDir): packageDir is NamedPackagingDir =>