Woodpecker CI: Use yarn --frozen-lockfile everywhere

This commit is contained in:
Phantasm 2026-05-05 22:09:52 +02:00
commit d50d629e07
No known key found for this signature in database
GPG key ID: 2669E588BCC634C8
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ steps:
image: docker.io/node:18-alpine
commands:
- apk add --no-cache zip
- yarn
- yarn --frozen-lockfile
- yarn build
- if [ "${CI_PIPELINE_EVENT}" = "push" ] || [ "${CI_PIPELINE_EVENT}" = "manual" ]; then zip -9qr ${CI_REPO_DEFAULT_BRANCH}.zip dist/; fi

View file

@ -10,7 +10,7 @@ steps:
image: &node-image
docker.io/node:18-alpine
commands:
- yarn
- yarn --frozen-lockfile
eslint:
image: *node-image