Skip to content

Commit

Permalink
ci: Specify packageManager version (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt committed Jun 20, 2024
1 parent 559d3cc commit cde0926
Show file tree
Hide file tree
Showing 5 changed files with 2,699 additions and 2,231 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- run: |
pnpm install
pnpm build
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- run: |
pnpm install
pnpm build
Expand Down
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@
"test": "vitest --api",
"format": "format .",
"lint": "biome ci .",
"fix": "biome check --apply .",
"fix": "biome check --write .",
"publint": "pnpm --recursive --filter=\"./packages/**\" exec publint"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@changesets/cli": "^2.27.1",
"@biomejs/biome": "1.8.2",
"@changesets/cli": "^2.27.5",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/node": "^20.12.11",
"publint": "^0.2.2",
"typescript": "^5.4.5",
"vitest": "^1.5.3"
}
"@types/node": "^20.14.6",
"publint": "^0.2.8",
"typescript": "5.6.0-dev.20240620",
"vitest": "^1.6.0"
},
"packageManager": "pnpm@9.4.0"
}
1 change: 0 additions & 1 deletion packages/indexing/__tests__/slice.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const DATA = {
stride: [12, 4, 1],
};

// biome-ignore lint/suspicious/noExportsInTest: <explanation>
export function run_suite(name: string, getter: unknown) {
let get = getter as typeof ops.get;

Expand Down
Loading

0 comments on commit cde0926

Please sign in to comment.