From bbaf779e7ae5e3dde3f673151322136af16e02d5 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Mon, 23 Feb 2026 12:36:18 +0100 Subject: [PATCH] chore: Run lint before downloading firefox for PRs to have an early exit, b=no-bug, c=workflows --- .github/workflows/pr-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index e05721c01..c0c768ed2 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -25,6 +25,9 @@ jobs: with: node-version-file: ".nvmrc" + - name: Run linting + run: npm run lint + - name: Install dependencies run: npm ci @@ -35,6 +38,3 @@ jobs: - name: Import patches run: npm run import - - - name: Run linting - run: npm run lint