Skip to content

feat: add feishu component & modify about page #29

feat: add feishu component & modify about page

feat: add feishu component & modify about page #29

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ${{ github.job }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: ⬣ ESLint, ʦ TypeScript, and 💅 Prettier
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🤌 Setup Bun
uses: oven-sh/setup-bun@v1
- name: 📥 Download deps
run: bun install --frozen-lockfile
- name: 🔬 Lint
run: bun run lint:strict
- name: 🔎 Type check
run: bun run typecheck
- name: 💅 Prettier check
run: bun run format:check
continue-on-error: true