Skip to content

Commit

Permalink
Include Node 20 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad committed Dec 2, 2023
1 parent e1898bf commit 3b4c643
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- name: Checkout Repository
Expand All @@ -27,7 +27,7 @@ jobs:
fetch-depth: 1

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3.7.0
uses: actions/setup-node@v4
with:
always-auth: false
node-version: ${{ matrix.node-version }}
Expand Down Expand Up @@ -57,6 +57,6 @@ jobs:
run: npm run coveralls

- name: Update Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.x, 16.x]
node-version: [20.x, 18.x, 16.x]
database-type:
[
postgres,
Expand All @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 16.x]
node-version: [20.x, 18.x, 16.x]

steps:
- name: Checkout Repository
Expand Down

0 comments on commit 3b4c643

Please sign in to comment.