Skip to content

feat: 完善 OAuth、邮件与用量缓存 #10

feat: 完善 OAuth、邮件与用量缓存

feat: 完善 OAuth、邮件与用量缓存 #10

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
# Cancel superseded runs on the same ref
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Biome (format + lint + import order)
run: npm run check:ci
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test