Skip to content

Commit

Permalink
chore: updated ci to use node v16
Browse files Browse the repository at this point in the history
  • Loading branch information
claustres committed Feb 7, 2024
1 parent b08bee7 commit 0e2a545
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: ['16.x'] # ['16.x', '18.x', '20.x']
mongodb-version: ['4.4'] # ['4.4', '5.0', '6.0']

steps:
- uses: actions/checkout@v2
- name: Start MongoDB
- name: Start MongoDB ${{ matrix.mongodb-version }}
uses: supercharge/[email protected]
with:
mongodb-version: 4.4
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-replica-set: test-rs
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '15.x'
node-version: '16.x'
- run: npm ci
- run: |
git config user.name "GitHub Actions Bot"
Expand Down

0 comments on commit 0e2a545

Please sign in to comment.