Skip to content

Commit

Permalink
Fix: bump Node used in CI to 20 to address failure with latest 'npm'
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio-Maranhao committed Jan 17, 2025
1 parent 853ac41 commit bbf7c3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
- name: Install npm packages
run: |
npm install -g npm@latest
Expand All @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'npm'
- run: ./bin/build-couchdb-dev.sh
env:
Expand Down
3 changes: 1 addition & 2 deletions app/addons/documents/rev-browser/components/confirmmodal.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ export default class ConfirmModal extends React.Component {
</Modal.Header>
<Modal.Body>
<p>
Do you want to delete all conflicting revisions for this documentcc?
Do you want to delete all conflicting revisions for this document?
</p>

</Modal.Body>
<Modal.Footer>
<div className='col-12'>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"fauxton": "./bin/fauxton"
},
"engines": {
"node": "^18"
"node": "^20"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
Expand Down

0 comments on commit bbf7c3d

Please sign in to comment.