From 5e13a50b4271ea4959ac4035e44d7d7dcb6e6bcc Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Thu, 4 Jan 2024 17:23:03 -0800 Subject: [PATCH] fix: :green_heart: lint all aspects of frontend, even if failure --- .github/workflows/lint-frontend.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-frontend.yaml b/.github/workflows/lint-frontend.yaml index b275edbd2..2c1cd3c5a 100644 --- a/.github/workflows/lint-frontend.yaml +++ b/.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 \ No newline at end of file + - run: bun run lint:types + if: success() || failure() \ No newline at end of file