Files
MetonaEditor/.gitea/workflows/ci.yml
T
thzxx 32ff342bae
CI / test (20.x) (push) Canceled after 0s
CI / test (22.x) (push) Canceled after 0s
CI / test (24.x) (push) Canceled after 0s
CI / test (18.x) (push) Canceled after 18s
fix: CI 添加 15分钟超时 + 单线程测试,防止 parser 大用例集卡死
2026-07-25 16:57:24 +08:00

44 lines
857 B
YAML

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: debian-latest
timeout-minutes: 15
strategy:
matrix:
node-version: [18.x, 20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run typecheck
- name: Lint
run: npm run lint
continue-on-error: true
- name: Run tests
run: npx jest --forceExit --maxWorkers=1 --testTimeout=15000 --no-cache
env:
NODE_OPTIONS: --max-old-space-size=4096
- name: Build
run: npm run build