fix: 优化登录表单提交逻辑,处理403错误并显示相应提示 #68
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 |