Skip to content
This repository was archived by the owner on Jul 12, 2025. It is now read-only.
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: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Setup PNPM ${{ matrix.pnpm-version }}
uses: pnpm/action-setup@v2.4.0
with:
version: 7.29.3
version: 8.x.x
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test
8 changes: 4 additions & 4 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- uses: pnpm/action-setup@v2.4.0
with:
version: 7.29.3
version: 8.x.x
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test
Expand All @@ -29,11 +29,11 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: https://registry.npmjs.org/
- uses: pnpm/action-setup@v2.4.0
with:
version: 7.29.3
version: 8.x.x
- run: pnpm install --frozen-lockfile
- run: npm publish
env:
Expand Down
Loading