Skip to content

Commit

Permalink
Make sure GH action workflows always run, regardless of previous fail…
Browse files Browse the repository at this point in the history
…ures.
  • Loading branch information
Vagr9K committed Jun 26, 2022
1 parent 67e79cd commit 8f044be
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Continuous Integration
on: [push]
jobs:
static-check:
if: always()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -13,6 +14,7 @@ jobs:
- run: yarn lint:all

type-check:
if: always()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -24,6 +26,7 @@ jobs:
- run: yarn type-check

jest-tests:
if: always()
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -40,6 +43,7 @@ jobs:
run: yarn test

e2e-tests:
if: always()
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit 8f044be

Please sign in to comment.