From d50d629e0732d289dbf4b95ba58c016f4b516ce5 Mon Sep 17 00:00:00 2001 From: Phantasm Date: Tue, 5 May 2026 22:09:52 +0200 Subject: [PATCH] Woodpecker CI: Use yarn --frozen-lockfile everywhere --- .woodpecker/build.yaml | 2 +- .woodpecker/lint.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 791110134..fa61225a3 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -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 diff --git a/.woodpecker/lint.yaml b/.woodpecker/lint.yaml index 239150183..132a28e7f 100644 --- a/.woodpecker/lint.yaml +++ b/.woodpecker/lint.yaml @@ -10,7 +10,7 @@ steps: image: &node-image docker.io/node:18-alpine commands: - - yarn + - yarn --frozen-lockfile eslint: image: *node-image