From d0a7338dc843dda39bd2249c14fe51b8c9d92819 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 12 Jun 2025 14:20:05 +0200 Subject: [PATCH] Add missing build step before linting --- .github/workflows/lint.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8a7fbbcb..0010ca27 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,5 +26,8 @@ jobs: - name: Install dependencies run: yarn install --immutable --immutable-cache --check-cache + - name: Build + run: yarn build + - name: Lint run: yarn lint