Skip to content

Commit

Permalink
bump node version
Browse files Browse the repository at this point in the history
  • Loading branch information
icebob committed Dec 17, 2023
1 parent e373168 commit 7d30cc3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:

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

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: node_modules
key: ${{ matrix.node-version }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"webpack-dev-middleware": "^5.2.1"
},
"peerDependencies": {
"moleculer": "^0.13.0 || ^0.14.0"
"moleculer": "^0.13.0 || ^0.14.0 || ^0.15.0"
},
"dependencies": {
"@fastify/busboy": "^1.0.0",
Expand All @@ -77,7 +77,7 @@
"serve-static": "^1.14.1"
},
"engines": {
"node": ">= 10.x.x"
"node": ">= 18.x.x"
},
"typings": "./index.d.ts",
"jest": {
Expand Down

0 comments on commit 7d30cc3

Please sign in to comment.