Skip to content

chore: remove trending widget #10744

chore: remove trending widget

chore: remove trending widget #10744

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
workflow_dispatch:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout 🚪
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup pnpm 🌸
uses: pnpm/action-setup@v2.2.4
- name: Setup node 🍀
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Bootstrap 📦
run: script/bootstrap
- name: Typecheck 🔡
run: pnpm typecheck:affected
- name: Lint 🪩
run: pnpm lint:affected
- name: Prettier ✨
run: pnpm prettier:affected
- name: Build 🎁
run: pnpm build
- name: Run Tests 🧪
run: pnpm test:dev