Skip to content

Commit 9d7c8bc

Browse files
authored
Move from Node 12 to 14 (#593)
* update workflow to 14 * update dev bc node version
1 parent 8e99fea commit 9d7c8bc

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,15 @@ jobs:
2727
# TODO: This fails because we don't have linting... Consider (please) adding strict linting.
2828
code-quality:
2929
runs-on: ubuntu-latest
30+
strategy:
31+
matrix:
32+
node-version: [14.x]
3033
steps:
3134
- uses: actions/checkout@v2
35+
- name: Use Node.js ${{ matrix.node-version }}
36+
uses: actions/setup-node@v1
37+
with:
38+
node-version: ${{ matrix.node-version }}
3239
- name: Run tests for coverage report
3340
run: npm install && npm run test:ci
3441
- name: Replace lcov paths with sonar docker mount folder
@@ -50,7 +57,7 @@ jobs:
5057

5158
strategy:
5259
matrix:
53-
node-version: [12.x]
60+
node-version: [14.x]
5461

5562
steps:
5663
- uses: actions/checkout@v2

.github/workflows/pull-request-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [12.x]
15+
node-version: [14.x]
1616

1717
steps:
1818
- uses: actions/checkout@v2

deployment/templates/buildconfig.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
uri: {{ .Values.git.uri }}
2121
type: Git
2222
dockerfile: |
23-
FROM quay.io/jitesoft/node:12 AS builder
23+
FROM quay.io/jitesoft/node:14 AS builder
2424
WORKDIR /app
2525
COPY . /app
2626
RUN ./build.sh

0 commit comments

Comments
 (0)