Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:

jobs:
cypress:
if: github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip tests]')
name: Run cypress tests
runs-on: ubuntu-latest
container:
Expand Down Expand Up @@ -45,6 +46,7 @@ jobs:
path: cypress/screenshots

jest:
if: github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip tests]')
name: Run unit tests
runs-on: ubuntu-latest
steps:
Expand All @@ -60,6 +62,7 @@ jobs:
run: yarn test:unit

prettier:
if: github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip tests]')
name: Check format with prettier
runs-on: ubuntu-latest
steps:
Expand All @@ -75,6 +78,7 @@ jobs:
run: yarn prettier --check .

eslint:
if: github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip tests]')
name: Lint with ESLint
runs-on: ubuntu-latest
steps:
Expand Down
Loading