fix(css): artist profile picture fix affecting all images (#3887) #1635
This file contains hidden or 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 | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| - "*/main/*/**" | |
| push: | |
| branches: | |
| - "main" | |
| - "*/main/*/**" | |
| jobs: | |
| linter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v7 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| cache: pnpm | |
| - name: Install Node dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Validate wrapper build | |
| run: pnpm check:wrapper | |
| - name: Check formatting | |
| run: pnpm fmt:check | |
| - name: Lint | |
| run: pnpm lint |