Skip to content

fix: Increased number of lines for accordion title and labels to fix overflow bug #1254

fix: Increased number of lines for accordion title and labels to fix overflow bug

fix: Increased number of lines for accordion title and labels to fix overflow bug #1254

Workflow file for this run

name: "Validate PR"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
jobs:
title:
name: 🛂 Lint PR title
runs-on: macos-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
lint:
name: 👁️ Validate code
runs-on: ubuntu-latest
steps:
- name: 👀 Checkout Repo
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: ⚛️ Enable Corepack
run: corepack enable
- name: 🌈 Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
cache-dependency-path: yarn.lock
- name: 📦 Install Dependencies
run: yarn install --immutable
- name: 🏭 Build packages
run: yarn build:all
- name: 🚦 Lint and fix
run: yarn lint:all --fix
- name: 🧪 Run tests
run: yarn test:all
- name: 🤖 Format
run: yarn format:all