Splash screen gradient #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality CI | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
eslint_check: | |
name: Eslint check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: borales/[email protected] | |
with: | |
cmd: install # will run `yarn install` command | |
- uses: borales/[email protected] | |
with: | |
cmd: lint | |
prettier_check: | |
name: Prettier check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: borales/[email protected] | |
with: | |
cmd: install | |
- uses: borales/[email protected] | |
with: | |
cmd: prettier |