File tree Expand file tree Collapse file tree 10 files changed +2322
-1594
lines changed
Expand file tree Collapse file tree 10 files changed +2322
-1594
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,11 @@ jobs:
1212 runs-on : ubuntu-latest
1313
1414 steps :
15- - uses : actions/checkout@v3
16- - uses : actions/setup-node@v3
15+ - uses : actions/checkout@v4
16+ - uses : actions/setup-node@v4
1717 with :
18- node-version : 20.14.0
19- - name : Cache node modules
20- uses : actions/cache@v3
21- with :
22- path : ~/.npm
23- key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
24- restore-keys : |
25- ${{ runner.os }}-node-
18+ node-version : 20.19.6
19+ cache : ' npm'
2620 - run : npm ci
2721 - name : Run build step
2822 run : npm run build
Original file line number Diff line number Diff line change @@ -15,19 +15,13 @@ jobs:
1515 name : SonarCloud
1616 runs-on : ubuntu-latest
1717 steps :
18- - uses : actions/checkout@v3
18+ - uses : actions/checkout@v4
1919 with :
2020 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
21- - uses : actions/setup-node@v3
21+ - uses : actions/setup-node@v4
2222 with :
23- node-version : 20.14.0
24- - name : Cache node modules
25- uses : actions/cache@v3
26- with :
27- path : ~/.npm
28- key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
29- restore-keys : |
30- ${{ runner.os }}-node-
23+ node-version : 20.19.6
24+ cache : ' npm'
3125 - run : npm ci
3226 - name : Run test cov
3327 run : npm run test:cov
Original file line number Diff line number Diff line change @@ -25,17 +25,11 @@ jobs:
2525 DEFAULT_ADMIN_USER_PASSWORD : example_admin_pass
2626
2727 steps :
28- - uses : actions/checkout@v3
29- - uses : actions/setup-node@v3
28+ - uses : actions/checkout@v4
29+ - uses : actions/setup-node@v4
3030 with :
31- node-version : 20.14.0
32- - name : Cache node modules
33- uses : actions/cache@v3
34- with :
35- path : ~/.npm
36- key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
37- restore-keys : |
38- ${{ runner.os }}-node-
31+ node-version : 20.19.6
32+ cache : ' npm'
3933 - run : npm ci
4034 - name : Run unit tests
4135 run : npm test
Original file line number Diff line number Diff line change @@ -393,3 +393,4 @@ local/
393393documentation
394394test-report.xml
395395tsconfig.build.tsbuildinfo
396+ .nvmrc
Original file line number Diff line number Diff line change 1+ registry = https://registry.npmjs.org/
Original file line number Diff line number Diff line change 1- nodejs 20.14.0
1+ nodejs 20.19.6
Original file line number Diff line number Diff line change 11# Development Dockerfile
2- FROM node:20.14.0 -bookworm-slim
2+ FROM node:20.19.6 -bookworm-slim
33
44# Install additional tools for development
55RUN apt-get update && apt-get install -y \
Original file line number Diff line number Diff line change 11# Stage 1: Build the application
2- FROM node:20.14.0 -bookworm-slim as builder
2+ FROM node:20.19.6 -bookworm-slim as builder
33
44WORKDIR /usr/src/app
55
@@ -19,7 +19,7 @@ RUN npm run build
1919RUN npm prune --production
2020
2121# Stage 2: Create the production image
22- FROM node:20.14.0 -bookworm-slim
22+ FROM node:20.19.6 -bookworm-slim
2323
2424WORKDIR /usr/src/app
2525
You can’t perform that action at this time.
0 commit comments