소스 검색

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

ThatOneCalculator 1 년 전
부모
커밋
5e13a50b42
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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()