fix: fix search appearance on web #1204
Workflow file for this run
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: "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 |