Change pnpm install command to use --no-frozen-lockfile in CI/CD workflow

This commit is contained in:
Space-Banane
2026-03-18 16:14:13 +01:00
parent bbddbe0bca
commit 5ab18ce870
+2 -2
View File
@@ -21,7 +21,7 @@ jobs:
with: with:
node-version: '24' node-version: '24'
- run: pnpm install --frozen-lockfile - run: pnpm install --no-frozen-lockfile
- run: pnpm build - run: pnpm build
publish: publish:
@@ -39,7 +39,7 @@ jobs:
node-version: '24' node-version: '24'
registry-url: 'https://registry.npmjs.org' registry-url: 'https://registry.npmjs.org'
- run: pnpm install --frozen-lockfile - run: pnpm install --no-frozen-lockfile
- run: pnpm build - run: pnpm build
- run: pnpm publish --no-git-checks - run: pnpm publish --no-git-checks