Skip to content

chore: 调整 CI 顺序 #21

chore: 调整 CI 顺序

chore: 调整 CI 顺序 #21

Workflow file for this run

name: CI
"on":
push:
branches:
- main
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 25
cache: "npm"
- name: Install dependencies
run: npm ci || npm install --no-audit --no-fund
- name: Typecheck
run: npm run typecheck
- name: Format
run: npm run format
- name: Lint
run: npm run lint
- name: Verify reproducible artifacts build
run: npm run artifacts