Skip to content

Commit

Permalink
ci: run all checks even if prior checks failed
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes-lindgren committed Aug 23, 2024
1 parent 9758e54 commit b167783
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b167783

Please sign in to comment.