Skip to content

Commit d2c4a5e

Browse files
committed
Update CI action to node 18.x
Signed-off-by: Jordan Moore <[email protected]>
1 parent 870d211 commit d2c4a5e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/nodejs-ci-action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
node-version: [12.x, 14.x, 16.x]
18+
node-version: [12.x, 14.x, 16.x, 18.x]
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -37,7 +37,7 @@ jobs:
3737
- name: Generate coverage report
3838
uses: actions/setup-node@v1
3939
with:
40-
node-version: 16.x
40+
node-version: 18.x
4141
- run: npm ci
4242
- run: npm run build --if-present
4343
- run: npm run coverage
@@ -60,7 +60,7 @@ jobs:
6060
- name: Upload coverage report to codacy
6161
uses: actions/setup-node@v1
6262
with:
63-
node-version: 16.x
63+
node-version: 18.x
6464
- run: |
6565
( [[ "${CODACY_PROJECT_TOKEN}" != "" ]] && npm run coverage-publish ) || echo "Coverage report not published"
6666
env:

0 commit comments

Comments
 (0)