Skip to content

fix(css): artist profile picture fix affecting all images (#3887) #1635

fix(css): artist profile picture fix affecting all images (#3887)

fix(css): artist profile picture fix affecting all images (#3887) #1635

Workflow file for this run

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