Skip to content

Commit e0dd9c0

Browse files
authored
Fix pantry not found on install and uninstall commands (#1067)
* Temporarily use PR libpkgx * use libpkgx^0.20.3 * Check lockfile in CI * Regenerated lockfile * Fix lockfile for good
1 parent 9680198 commit e0dd9c0

File tree

5 files changed

+114
-959
lines changed

5 files changed

+114
-959
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: denoland/setup-deno@v2 # using ourself to install deno could compromise the tests
3636
with:
3737
deno-version: ^2.1.6
38-
- run: deno cache **/*.test.ts
38+
- run: deno install --frozen
3939
- run: deno task test --coverage=cov_profile --no-check
4040
- run: deno coverage cov_profile --lcov --exclude=tests/ --output=cov_profile.lcov
4141
- uses: coverallsapp/github-action@v2

deno.jsonc

+5-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@
3535
"@std/yaml": "jsr:@std/yaml@^1.0.5",
3636
"is-what": "https://deno.land/x/[email protected]/src/index.ts",
3737
"outdent": "jsr:@cspotcode/outdent@^0.8",
38-
"pkgx": "https://deno.land/x/[email protected]/mod.ts",
39-
"pkgx/": "https://deno.land/x/[email protected]/src/"
38+
"pkgx": "https://deno.land/x/[email protected]/mod.ts",
39+
"pkgx/": "https://deno.land/x/[email protected]/src/",
40+
// test dependencies
41+
"faker": "npm:@faker-js/faker@^9.4.0",
42+
"npm:@types/node@*": "npm:@types/node@*" // implicit
4043
}
4144
}

0 commit comments

Comments
 (0)