From b329ed7813d808b0411d233064264aff603a33ec Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Thu, 6 Apr 2023 13:55:12 +0100 Subject: [PATCH] ci: stub project before linting --- .github/workflows/autofix.yml | 6 +++--- .github/workflows/ci.yml | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index e57571f5ea..3c47e98c69 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -27,12 +27,12 @@ jobs: if: ${{ contains(github.ref_name, 'renovate') }} run: pnpm dedupe - - name: Lint (code) - run: pnpm lint:fix - - name: Build (stub) run: pnpm build:stub + - name: Lint (code) + run: pnpm lint:fix + - name: Test (unit) run: pnpm test:unit -u diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc7bb96e26..9773ce8f5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,6 +104,9 @@ jobs: - name: Install dependencies run: pnpm install + - name: Build (stub) + run: pnpm build:stub + - name: Lint run: pnpm lint