diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index c0bf412..9c8f867 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -19,7 +19,7 @@ jobs: node-version: '24' - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Validate commit messages run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 8a514f3..98b897e 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -31,7 +31,7 @@ jobs: node-version: '24' - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Detect Next Version id: version diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 28ef2bf..f4f6dce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: node-version: '24' - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Set up Python uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0