Skip to content

fix(tools): only reject a preview the tool actually has #2676

fix(tools): only reject a preview the tool actually has

fix(tools): only reject a preview the tool actually has #2676

Workflow file for this run

name: Format Check
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches: [ '*' ]
push:
branches: [ beta ]
jobs:
lint:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6.0.3
- name: Setup pnpm
uses: pnpm/action-setup@v6.0.8
- name: Setup Node.js
uses: actions/setup-node@v6.4.0
with:
node-version: '24.15.0'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm run lint
- name: Run format check
run: pnpm run format-check