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
10 changes: 5 additions & 5 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [20, 22, 24, 26]
node: [22, 24, 26]
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand All @@ -36,15 +36,15 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Run Format
if: matrix.node == 22
if: matrix.node == 24
run: pnpm run format

- name: Lint source files
if: matrix.node == 22
if: matrix.node == 24
run: pnpm run lint

- name: Check types
if: matrix.node == 22
if: matrix.node == 24
run: pnpm run typecheck

- name: Build package
Expand All @@ -54,5 +54,5 @@ jobs:
run: pnpm run test:coverage

- name: 'Report Coverage'
if: matrix.node == 22 && always()
if: matrix.node == 24 && always()
uses: davelosert/vitest-coverage-report-action@v2
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Prepare data for badges
run: |
pnpm run build
pnpm run test:coverage

- name: Run release script
run: npx @localazy/workflow-scripts create-release-pr
env:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,5 @@
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.33.0"
"packageManager": "pnpm@11.1.2"
}