Procházet zdrojové kódy

fix: :green_heart: lint all aspects of frontend, even if failure

ThatOneCalculator před 1 rokem
rodič
revize
5e13a50b42
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      .github/workflows/lint-frontend.yaml

+ 2 - 1
.github/workflows/lint-frontend.yaml

@@ -17,4 +17,5 @@ jobs:
       - name: Install frontend dependencies
         run: bun install --frozen-lockfile
       - run: bun run lint:frontend
-      - run: bun run lint:types
+      - run: bun run lint:types
+        if: success() || failure()