Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
strategy:
matrix:
node-version: [18, 20, 22]
zarrita-version: ["0.5", "0.6"]

steps:
- uses: actions/checkout@v4
Expand All @@ -26,6 +27,9 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Install zarrita ${{ matrix.zarrita-version }}
run: npm install --no-save zarrita@^${{ matrix.zarrita-version }}.0

- name: Run tests
run: npm test

Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@
"tsx": "^4.19.0",
"typescript": "^5.4.0",
"vitest": "^1.4.0",
"zarrita": "^0.5.0"
"zarrita": "^0.6.0"
},
"peerDependencies": {
"zarrita": "^0.5.0"
"zarrita": "^0.5.0 || ^0.6.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The devDependencies (line 58) should be updated to include ^0.6.0 (e.g., ^0.5.0 || ^0.6.0). Currently, local development and tests are pinned to version 0.5.x, which means compatibility with the newly supported version 0.6.0 is not being verified during development or in standard test runs.

},
"peerDependenciesMeta": {
"zarrita": {
Expand Down
Loading