Skip to content

chore: wip

chore: wip #71

Workflow file for this run

name: 代码质量测试
on:
pull_request:
branches-ignore:
- renovate/**
push:
branches-ignore:
- insider
- latest
- renovate/**
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
unit-test:
name: 单元测试
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: pnpm
- run: pnpm install
- run: pnpm test