Skip to content

Commit

Permalink
chore: upgrade node version
Browse files Browse the repository at this point in the history
  • Loading branch information
stropitek committed Sep 1, 2023
1 parent f2bbfc7 commit a6db9b6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: 16.x
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Run ESLint
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,8 @@
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"volta": {
"node": "18.17.1"
}
}
2 changes: 1 addition & 1 deletion rest-on-couch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/cheminfo/rest-on-couch:13
FROM ghcr.io/cheminfo/rest-on-couch:15

# Install system packages
RUN apt-get update && apt-get install -y vim
Expand Down
2 changes: 1 addition & 1 deletion src/testUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const couchdbAxios = axios.create({
username: 'rest-on-couch',
password: 'admin',
},
baseURL: 'http://localhost:5984/',
baseURL: 'http://127.0.0.1:5984/',
});

export async function resetTestDatabase() {
Expand Down

0 comments on commit a6db9b6

Please sign in to comment.