Skip to content

Commit

Permalink
fix: Bump node engines (#227)
Browse files Browse the repository at this point in the history
* Bump engines

* Fix CI
  • Loading branch information
zharinov committed May 12, 2023
1 parent 972eed8 commit 5ca7eb2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
node-version: [14.x, 16.x]
node-version: [18]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Using Node.js v14
uses: actions/setup-node@v3.5.1
with:
node-version: 14
node-version: 18
cache: 'yarn'
registry-url: https://registry.npmjs.org/

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trunk.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
node-version: [14.x, 16.x]
node-version: [18]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions package.json
Expand Up @@ -11,6 +11,10 @@
"files": [
"dist"
],
"engines": {
"node": ">=18.12.0",
"yarn": "^1.17.0"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"scripts": {
Expand Down

0 comments on commit 5ca7eb2

Please sign in to comment.