diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6198d61a..c4ecdee7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -29,7 +29,7 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci --only=production + run: npm ci - name: Build run: npm run build --if-present diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 3932290c..a4b1719d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -19,7 +19,7 @@ jobs: uses: actions/setup-node@v3 - name: Install dependencies - run: npm ci --only=production + run: npm ci - name: Test run: npm run test:ci