Skip to content

Commit f988ed9

Browse files
authored
Merge pull request #8436 from nightscout/dev
Release 15.0.5
2 parents b03c604 + 743506a commit f988ed9

File tree

4 files changed

+697
-337
lines changed

4 files changed

+697
-337
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
node-version: [16, 20, 22]
19+
node-version: [20, 22]
2020
mongodb-version: [4.4, 5.0, 6.0]
2121

2222
steps:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ADD . /opt/app
88
# TODO: We should be able to do `RUN npm install --only=production`.
99
# For this to work, we need to copy only package.json and things needed for `npm`'s to succeed.
1010
# TODO: Do we need to re-add `npm audit fix`? Or should that be part of a development process/stage?
11-
RUN npm install --cache /tmp/empty-cache && \
11+
RUN npm ci --cache /tmp/empty-cache --omit=optional --force && \
1212
npm run postinstall && \
1313
npm run env && \
1414
rm -rf /tmp/*

0 commit comments

Comments
 (0)