diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8b607e797..4810694f5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -48,7 +48,7 @@ jobs: ${{ runner.os }}- - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Build docs run: npm run build diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index c0d4926d4..9a071089e 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -40,7 +40,7 @@ jobs: ${{ runner.os }}- - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Lint js code run: npm run lint diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..97b895e2f --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +ignore-scripts=true