File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 27
27
# TODO: This fails because we don't have linting... Consider (please) adding strict linting.
28
28
code-quality :
29
29
runs-on : ubuntu-latest
30
+ strategy :
31
+ matrix :
32
+ node-version : [14.x]
30
33
steps :
31
34
- 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 }}
32
39
- name : Run tests for coverage report
33
40
run : npm install && npm run test:ci
34
41
- name : Replace lcov paths with sonar docker mount folder
50
57
51
58
strategy :
52
59
matrix :
53
- node-version : [12 .x]
60
+ node-version : [14 .x]
54
61
55
62
steps :
56
63
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 12
12
13
13
strategy :
14
14
matrix :
15
- node-version : [12 .x]
15
+ node-version : [14 .x]
16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 20
20
uri : {{ .Values.git.uri }}
21
21
type : Git
22
22
dockerfile : |
23
- FROM quay.io/jitesoft/node:12 AS builder
23
+ FROM quay.io/jitesoft/node:14 AS builder
24
24
WORKDIR /app
25
25
COPY . /app
26
26
RUN ./build.sh
You can’t perform that action at this time.
0 commit comments