Skip to content

Commit cc43f3b

Browse files
authored
chore: update CI workflow to include Node.js 14.x (cloudevents#404)
Signed-off-by: Lance Ball <lball@redhat.com>
1 parent edd3c7f commit cc43f3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
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: [10.x, 12.x]
18+
node-version: [10.x, 12.x, 14.x]
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -35,7 +35,7 @@ jobs:
3535
- name: Generate coverage report
3636
uses: actions/setup-node@v1
3737
with:
38-
node-version: 12.x
38+
node-version: 14.x
3939
- run: npm ci
4040
- run: npm run build --if-present
4141
- run: npm run coverage
@@ -58,7 +58,7 @@ jobs:
5858
- name: Upload coverage report to codacy
5959
uses: actions/setup-node@v1
6060
with:
61-
node-version: 12.x
61+
node-version: 14.x
6262
- run: |
6363
( [[ "${CODACY_PROJECT_TOKEN}" != "" ]] && npm run coverage-publish ) || echo "Coverage report not published"
6464
env:

0 commit comments

Comments
 (0)