From bc50ce35d0baad2722a80c189f8e1ce96abbcb0f Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Tue, 24 Sep 2024 09:13:43 -0400 Subject: [PATCH] Try --ignore-scripts --- .github/workflows/frontend.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 9dc04870db..955dd6086e 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -34,7 +34,7 @@ jobs: uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: node-version: ${{ matrix.node-version }} - - run: npm ci + - run: npm ci --ignore-scripts - run: npm run fmt-frontend-check - run: npm run lint - run: npm run build @@ -63,7 +63,7 @@ jobs: uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: node-version: ${{ matrix.node-version }} - - run: npm ci + - run: npm ci --ignore-scripts - run: npm run test-frontend:coverage env: CI: true