From fafdfb4a287572b051fabdd71b1d5b2186c03b27 Mon Sep 17 00:00:00 2001 From: Jeldrik Hanschke Date: Tue, 17 Oct 2023 14:20:15 +0200 Subject: [PATCH] fix installation issue --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a60289e5..01cac9258 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: node-version: 18 cache: npm - name: Install node modules - run: npm run install + run: npm ci - name: Run tests run: npm run test:bundlesize @@ -52,7 +52,7 @@ jobs: node-version: 18 cache: npm - name: Install node modules - run: npm run install + run: npm ci - name: Run tests run: npm run test:csp-header @@ -66,7 +66,7 @@ jobs: node-version: 18 cache: npm - name: Install node modules - run: npm run install + run: npm ci - name: Install chrome browser run: | wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb @@ -88,7 +88,7 @@ jobs: node-version: 18 cache: npm - name: Install node modules - run: npm run install + run: npm ci - name: Setup firefox uses: browser-actions/setup-firefox@latest with: @@ -110,7 +110,7 @@ jobs: node-version: 18 cache: npm - name: Install node modules - run: npm run install + run: npm ci - name: Build with test environment env: CI: true