feat: 🎨 changed border bottom left for translation badge in case there's translation app icon #1118
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: Verify Build | |
on: | |
pull_request: | |
branches-ignore: | |
- staging | |
- prod | |
jobs: | |
build: | |
name: Verify Build | |
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] | |
name: lint | |
with: | |
cmd: lint # will run `yarn lint` command | |
- uses: borales/[email protected] | |
name: lint types | |
with: | |
cmd: lint:types # will run `yarn lint:types` command | |
- uses: borales/[email protected] | |
name: Build Storybook | |
with: | |
cmd: build:storybook # will run `yarn build` command | |
- uses: borales/[email protected] | |
name: Run yarn build | |
with: | |
cmd: build # will run `yarn build` command | |