From 738ae7f77af33176e701029aae7bc87085b3e613 Mon Sep 17 00:00:00 2001 From: Ken Gullaksen Date: Thu, 21 Sep 2023 23:43:30 +0200 Subject: [PATCH] remove build warnings --- .github/workflows/cicd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 443f0050c..5433943d4 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -22,12 +22,12 @@ jobs: cache: 'npm' - name: Installer avhengigheter (client) - run: npm ci + run: npm ci --omit=dev --omit=optional env: NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }} - name: Installer avhengigheter (server) - run: npm ci --production --ignore-scripts --no-optional + run: npm ci --omit=dev --omit=optional env: NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }} working-directory: ./server