diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13c219b7f..459a41c08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: node-version: 22 cache: 'npm' - name: Install dependencies - run: npm ci --workspaces --include-workspace-root + run: npm ci --ignore-scripts --workspaces --include-workspace-root - name: Build run: npm run build:local @@ -33,4 +33,4 @@ jobs: run: npm run lint --workspaces - name: Test all workspaces - run: npm test --workspaces \ No newline at end of file + run: npm test --workspaces diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5278a0b5..3a7f4531a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: run: node --version - name: Install deps - run: npm ci --workspaces --include-workspace-root + run: npm ci --ignore-scripts --workspaces --include-workspace-root # Parse package name and version from branch - name: Parse version and package