bug fix: padding lost in onboarding recommended user follow list (#2439) #4613
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: repo-lint | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: 'actions/checkout@v3' | |
with: | |
fetch-depth: 0 | |
- uses: 'actions/setup-node@v3' | |
with: | |
node-version: 20.5.0 | |
cache: 'yarn' | |
- run: 'yarn install --immutable' | |
- name: Run Lint & Prettier | |
run: node_modules/.bin/moon run :lint :prettier |