Skip to content

test(ui): 更新页面测试覆盖 #5

test(ui): 更新页面测试覆盖

test(ui): 更新页面测试覆盖 #5

Workflow file for this run

name: Starter CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint_and_test:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 10
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm lint
- name: Run tests
run: pnpm test