Skip to content

feat: optimize feed external page ui and extract create zustand store logic #89

feat: optimize feed external page ui and extract create zustand store logic

feat: optimize feed external page ui and extract create zustand store logic #89

Workflow file for this run

on:
pull_request:
push:
branches: [main]
name: CI Typecheck and Lint
jobs:
build:
name: Lint and Typecheck
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- name: Checkout LFS objects
run: git lfs checkout
- uses: pnpm/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint and Typecheck
run: |
pnpm run typecheck && npm run lint