Skip to content

refactor: equal height theme cards #137

refactor: equal height theme cards

refactor: equal height theme cards #137

Workflow file for this run

name: Quality
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
prettier:
name: Format with Prettier
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Enable corepack
shell: bash
run: corepack enable
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn format:check