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

Commit

Permalink
Drop Node.js 14 support and add Node.js 18 support
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanmanning committed Mar 25, 2023
1 parent 5e6dcc1 commit a5a1d72
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/verify-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
cache: 'npm'
- run: npm install
- run: npm run verify
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14', '16']
node: ['16', '18']
mongodb: ['4', '5']
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ Audrey is self-hosted; you can set up an installation on your own server or clou

This application requires the following to run:

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


## Running Locally

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:
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:

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

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"bugs": "https://github.com/rowanmanning/audrey/issues",
"license": "GPL-3.0",
"engines": {
"node": ">=14 <=16",
"npm": ">=7 <=16",
"node": "16.x || 18.x",
"npm": "8.x || 9.x",
"mongodb": "4 || 5"
},
"scripts": {
Expand Down

0 comments on commit a5a1d72

Please sign in to comment.