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
42 changes: 13 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,51 +17,35 @@ jobs:
strategy:
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
node-version: [ ^18.0.0, ^20.0.0 ]
node-version: [ ^22.0.0, ^24.0.0 ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --ignore-scripts
- run: ./node_modules/.bin/c8 --reporter=lcovonly npm test
- uses: codecov/codecov-action@v6.0.0

pnpm-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ^20.0.0
- uses: actions/cache@v4
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: pnpm-check-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
restore-keys: pnpm-check-${{ env.cache-name }}-
- uses: pnpm/action-setup@v6.0.1
- uses: pnpm/action-setup@v6
with:
version: ^8.15.4
run_install: |
- args: [--ignore-scripts]
- run: pnpm run compile
- run: pnpm test
version: 10
- run: pnpm install
- run: ./node_modules/.bin/c8 --reporter=lcovonly pnpm test
- uses: codecov/codecov-action@v6.0.0

release-readiness:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ^20.0.0
- run: npm ci
- run: npm run release-readiness
node-version: ^24.0.0
- uses: pnpm/action-setup@v6
with:
version: 10
- run: pnpm install
- run: pnpm run release-readiness

dependabot-approveOrMerge:
needs: [test, pnpm-check, release-readiness]
needs: [test, release-readiness]
runs-on: ubuntu-latest
permissions:
pull-requests: write
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ dist/
.nyc_output
coverage
temp
pnpm-lock.yaml
.pnpm-store
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed
- Raised minimum NodeJS version from 12.17.0 to 22.

## [3.0.2] - 2022-03-16

## [3.0.1] - 2021-07-10
Expand Down
Loading
Loading