Skip to content

refactor!: 内置 hook vue3 app,目前仅一个场景用到 #65

refactor!: 内置 hook vue3 app,目前仅一个场景用到

refactor!: 内置 hook vue3 app,目前仅一个场景用到 #65

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths:
- "**.ts"
- ".github/workflows/**"
- ".vscode/**"
pull_request:
branches:
- main
paths:
- "**.ts"
- ".github/workflows/**"
workflow_dispatch:
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: true
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint