From b1677839dcc6b25b8423b7310cbc2858b7c415b6 Mon Sep 17 00:00:00 2001 From: Johannes Lindgren <14206504+johannes-lindgren@users.noreply.github.com> Date: Fri, 23 Aug 2024 18:21:24 +0200 Subject: [PATCH] ci: run all checks even if prior checks failed --- .github/workflows/test.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ec8ff7c..f7557b4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,16 +16,21 @@ jobs: - name: Install run: yarn install --immutable - name: Check Code Formatting + if: always() run: yarn check:formatting - name: Check Types + if: always() run: yarn check:types - # No linters for this repo (yet) - # - name: Lint - # run: | - # yarn lint +# No linters for this repo (yet) +# - name: Lint +# if: always() +# run: yarn lint - name: Test + if: always() run: yarn test - name: Build + if: always() run: yarn build - name: Test Build Output + if: always() run: yarn build