Skip to content

Commit 85cf073

Browse files
authored
Add Node 18 to CI (#1455)
Signed-off-by: CaptainIRS <36656347+CaptainIRS@users.noreply.github.com> Signed-off-by: CaptainIRS <36656347+CaptainIRS@users.noreply.github.com>
1 parent 69000d4 commit 85cf073

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
fail-fast: false
5959
matrix:
6060
adaptor: ${{ fromJSON(needs.changes.outputs.adaptor) }}
61-
node-version: [14.x, 16.x]
61+
node-version: [14.x, 16.x, 18.x]
6262
steps:
6363
- uses: actions/checkout@v3
6464
- name: Use Node.js ${{ matrix.node-version }}

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- name: Use Node.js 16.x
12+
- name: Use Node.js 18.x
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 16.x
15+
node-version: 18.x
1616
- name: Publish Caliper
1717
run: .build/publish-caliper.sh
1818
env:

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [14.x, 16.x]
15+
node-version: [14.x, 16.x, 18.x]
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Use Node.js ${{ matrix.node-version }}
@@ -41,7 +41,7 @@ jobs:
4141
- name: Run unit tests
4242
run: npm test --workspaces
4343
- name: Upload coverage reports artifact
44-
if: matrix.node-version == '16.x'
44+
if: matrix.node-version == '18.x'
4545
uses: actions/upload-artifact@v3
4646
with:
4747
name: coverage-reports

0 commit comments

Comments
 (0)