Skip to content
This repository was archived by the owner on Sep 2, 2023. It is now read-only.

Commit a5a1d72

Browse files
committed
Drop Node.js 14 support and add Node.js 18 support
1 parent 5e6dcc1 commit a5a1d72

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/verify-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-node@v3
2020
with:
21-
node-version: '16'
21+
node-version: '18'
2222
cache: 'npm'
2323
- run: npm install
2424
- run: npm run verify
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
strategy:
3232
matrix:
33-
node: ['14', '16']
33+
node: ['16', '18']
3434
mongodb: ['4', '5']
3535
steps:
3636
- uses: actions/checkout@v3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ Audrey is self-hosted; you can set up an installation on your own server or clou
4141

4242
This application requires the following to run:
4343

44-
* [Node.js](https://nodejs.org/) v14.0.0+
44+
* [Node.js](https://nodejs.org/) v16.0.0+
4545
* [MongoDB](https://www.mongodb.com/) v4.0.0+
4646

4747

4848
## Running Locally
4949

50-
You can run Audrey locally if you intend on making your own changes, or just want to test it out. Follow theses steps to get Audrey running on your local machine:
50+
You can run Audrey locally if you intend on making your own changes, or just want to test it out. Follow these steps to get Audrey running on your local machine:
5151

5252
1. Make sure you have all of the software listed in [Requirements](#requirements)
5353

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"bugs": "https://github.com/rowanmanning/audrey/issues",
1919
"license": "GPL-3.0",
2020
"engines": {
21-
"node": ">=14 <=16",
22-
"npm": ">=7 <=16",
21+
"node": "16.x || 18.x",
22+
"npm": "8.x || 9.x",
2323
"mongodb": "4 || 5"
2424
},
2525
"scripts": {

0 commit comments

Comments
 (0)