fix: navbar search input zoom on focus #316
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: Lint | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: corepack enable | |
- name: Install | |
run: yarn install | |
- name: Prettier | |
run: yarn format:check | |
- name: Stylelint | |
run: yarn lint | |
# Ensure that all the expected files have been commited (yarn.lock, /dist...) | |
- name: Git staged is empty | |
run: yarn build && git diff --exit-code |