Skip to content

fix: restore LabelElement import removed by mistake #61

fix: restore LabelElement import removed by mistake

fix: restore LabelElement import removed by mistake #61

Workflow file for this run

name: CI
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: write
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
pull_request:
branches:
- main
paths-ignore:
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: corepack enable
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile
- name: 👀 Lint
run: pnpm lint
- name: 🔍 Typecheck
run: pnpm typecheck
- name: 🧪 Test
run: pnpm test
- name: 🚀 Build
run: pnpm build