Fix npm install commands in Dockerfiles and ops scripts

This commit is contained in:
wiz
2022-07-07 18:32:18 +02:00
parent 6ead907e08
commit d57193c269
4 changed files with 6 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ jobs:
- name: Install (Prod dependencies only)
if: ${{ matrix.flavor == 'prod'}}
run: npm ci --prod --no-optional
run: npm ci --omit=dev --omit=optional
working-directory: ${{ matrix.flavor }}/backend
- name: Lint
@@ -70,7 +70,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Install (Prod dependencies only)
run: npm ci --prod --no-optional
run: npm ci --omit=dev --omit=optional
if: ${{ matrix.flavor == 'prod'}}
working-directory: ${{ matrix.flavor }}/frontend