Skip to content

Commit

Permalink
Raise minimum node version to 18 (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
Silic0nS0ldier authored Mar 16, 2024
1 parent 60cfa9f commit d5d520c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
node-version: [ ^14.0.0, ^16.0.0, ^18.0.0 ]
node-version: [ ^18.0.0, ^20.0.0 ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ^16.0.0
node-version: ^20.0.0
- uses: actions/cache@v4
env:
cache-name: cache-pnpm-modules
Expand All @@ -46,7 +46,7 @@ jobs:
restore-keys: pnpm-check-${{ env.cache-name }}-
- uses: pnpm/action-setup@v3.0.0
with:
version: ^7.12.1
version: ^8.15.4
run_install: |
- args: [--ignore-scripts]
- run: pnpm run compile
Expand All @@ -58,7 +58,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ^16.0.0
node-version: ^20.0.0
- run: npm ci
- run: npm run release-readiness

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"typescript": "^5.4.2"
},
"engines": {
"node": ">=14.0.0"
"node": ">=18.0.0"
},
"engineStrict": true,
"ava": {
Expand Down

0 comments on commit d5d520c

Please sign in to comment.