Skip to content

Commit bbf7c3d

Browse files
Fix: bump Node used in CI to 20 to address failure with latest 'npm'
1 parent 853ac41 commit bbf7c3d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: '18'
17+
node-version: '20'
1818
- name: Install npm packages
1919
run: |
2020
npm install -g npm@latest
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v4
4040
- uses: actions/setup-node@v4
4141
with:
42-
node-version: '18'
42+
node-version: '20'
4343
cache: 'npm'
4444
- run: ./bin/build-couchdb-dev.sh
4545
env:

app/addons/documents/rev-browser/components/confirmmodal.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@ export default class ConfirmModal extends React.Component {
5050
</Modal.Header>
5151
<Modal.Body>
5252
<p>
53-
Do you want to delete all conflicting revisions for this documentcc?
53+
Do you want to delete all conflicting revisions for this document?
5454
</p>
55-
5655
</Modal.Body>
5756
<Modal.Footer>
5857
<div className='col-12'>

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"fauxton": "./bin/fauxton"
1111
},
1212
"engines": {
13-
"node": "^18"
13+
"node": "^20"
1414
},
1515
"devDependencies": {
1616
"@babel/cli": "^7.18.10",

0 commit comments

Comments
 (0)