Skip to content

Commit d8e6939

Browse files
fix: fix ci config and remove mention of node 18.x
1 parent a2992f9 commit d8e6939

File tree

4 files changed

+7105
-6
lines changed

4 files changed

+7105
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
strategy:
2828
matrix:
29-
node-version: [18.x, 20.x, 22.x]
29+
node-version: [20.x, 22.x]
3030

3131
steps:
3232
- uses: actions/checkout@v4
@@ -45,10 +45,9 @@ jobs:
4545
uses: actions/setup-node@v4
4646
with:
4747
node-version: ${{ matrix.node-version }}
48-
cache: 'npm'
4948

5049
- name: Install Dependencies
51-
run: npm ci --build-from-source
50+
run: npm install --build-from-source
5251

5352
- name: Seed Database
5453
env:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Package files
2-
package-lock.json
2+
# package-lock.json
33

44

55
# Logs

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ This vulnerable application contains the following API/Web Service vulnerabiliti
4141
**Node and NPM is needed to run dvws-node**
4242

4343
Tested on:
44-
* node v16.19.0 / v22.x
45-
* npm 8.19.3 / 10.x
44+
* node v20.x / v22.x
45+
* npm 10.x
4646

4747

4848
Set up a mongoDB environment to listen on port `27017`. Docker can be used to quickly set this up.

0 commit comments

Comments
 (0)