feat: 添加重置密码API;更新依赖项版本;优化登录对话框组件 #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v4 | |
- name: 📦 Install dependencies | |
run: pnpm install | |
# - name: 🌈 typecheck | |
# run: pnpm typecheck | |
- name: 📝 Lint | |
run: pnpm lint:fix | |
- name: 🍥 Build | |
run: pnpm build |