From 1fc29484a1481799f32b63fca5c8831e6df0258d Mon Sep 17 00:00:00 2001 From: Sai Krishna V Date: Mon, 20 Oct 2025 07:31:54 +0200 Subject: [PATCH] Fix auto-release Co-authored-by: SrinivasanTarget --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- .gitignore | 3 ++- package-lock.json | 15 +++++++++++++++ 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a13894..df00ca8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm install + run: npm install --no-package-lock --force - name: List installed packages run: npm list --depth=0 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d68239c..0e74a3d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: with: node-version: lts/* check-latest: true - - run: npm install --no-package-lock + - run: npm install --no-package-lock --force name: Install dependencies - run: npm run build name: Build diff --git a/.gitignore b/.gitignore index c8c74f5..42f4ab3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,5 @@ build ./test-reports ./test-results .DS_Store -src/tools/robot.ts \ No newline at end of file +src/tools/robot.ts +package-lock.json \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 5122a6b..8a7c70d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -47,6 +47,7 @@ "@types/node": "^22.15.18", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", + "conventional-changelog-conventionalcommits": "^8.0.0", "eslint": "^9.28.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.4.1", @@ -19224,6 +19225,19 @@ "node": ">=18" } }, + "node_modules/conventional-changelog-conventionalcommits": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-8.0.0.tgz", + "integrity": "sha512-eOvlTO6OcySPyyyk8pKz2dP4jjElYunj9hn9/s0OB+gapTO8zwS9UQWrZ1pmF2hFs3vw1xhonOLGcGjy/zgsuA==", + "dev": true, + "license": "ISC", + "dependencies": { + "compare-func": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/conventional-changelog-writer": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.2.0.tgz", @@ -20703,6 +20717,7 @@ "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "license": "MIT", + "peer": true, "engines": { "node": ">= 4.9.1" }