File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111
1212jobs :
1313 cypress :
14+ if : github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip tests]')
1415 name : Run cypress tests
1516 runs-on : ubuntu-latest
1617 container :
4546 path : cypress/screenshots
4647
4748 jest :
49+ if : github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip tests]')
4850 name : Run unit tests
4951 runs-on : ubuntu-latest
5052 steps :
6062 run : yarn test:unit
6163
6264 prettier :
65+ if : github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip tests]')
6366 name : Check format with prettier
6467 runs-on : ubuntu-latest
6568 steps :
7578 run : yarn prettier --check .
7679
7780 eslint :
81+ if : github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip tests]')
7882 name : Lint with ESLint
7983 runs-on : ubuntu-latest
8084 steps :
You can’t perform that action at this time.
0 commit comments