Files
MetonaSqlark/.gitea/workflows/ci.yml
T
thzxx ccfc39656b
CI / test (18.x) (push) Successful in 1m21s
CI / test (20.x) (push) Successful in 16m7s
CI / test (22.x) (push) Successful in 1m29s
CI / test (24.x) (push) Successful in 1m8s
CI / e2e (push) Successful in 53s
ci: 修复 4G 内存 runner 重型套件 OOM(exit 137)— 重型套件仅 20.x 单版本跑(矩阵并行 4 份各 ~1.2GB RSS 超限)+ 常规套件 maxWorkers 2→1
2026-08-15 12:55:29 +08:00

80 lines
3.0 KiB
YAML

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: debian-latest
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 }}
# v0.7.2-fix: 不用 cache —— Gitea act runner 对 setup-node 的 npm 缓存
# post 步骤(cache-save tar 打包)支持不完善,矩阵 job 并行时打包失败
# 会把整个 job 标红(即便 Run tests 已通过)。npm ci 每次 1~2 分钟可接受。
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run typecheck
- name: Lint
run: npm run lint
continue-on-error: true
# v0.7.2: Run tests 拆两步 —— 常规套件并行(快),重型套件串行(runInBand)。
# 此前重型测试(10 万行 kv/opfs、生产矩阵)与常规套件在慢 runner 上并行
# 争抢 CPU 与 4GB 堆 → 单测超时(120~180s)与 OOM 类假失败。
- name: Run tests (regular suites)
run: npx jest --forceExit --maxWorkers=1 --no-cache --testPathIgnorePatterns='/node_modules/|/tests/e2e/|/tests/helpers/|aria-prod-load|kvstore-stress|aria-matrix-audit|aria-idx-flush-race'
env:
NODE_OPTIONS: --max-old-space-size=4096
# v0.7.3-ci: 重型套件只在单一 Node 版本(20.x LTS)跑一次 ——
# 压力测试验证存储正确性/性能护栏,不依赖 Node 版本差异;
# 4 个矩阵 job 并行时重型套件各占 ~1.2GB RSS(实测),
# 4G 内存 runner 上 4 份并行必被 OOM killer 杀掉(exit 137)。
- name: Run tests (heavy suites, serial)
if: matrix.node-version == '20.x'
run: npx jest --forceExit --runInBand --no-cache tests/engine/aria-prod-load.test.ts tests/engine/kvstore-stress.test.ts tests/engine/aria-matrix-audit.test.ts tests/engine/aria-idx-flush-race.test.ts
env:
NODE_OPTIONS: --max-old-space-size=4096
- name: Build
run: npm run build
e2e:
runs-on: debian-latest
# 与 MetonaEditor 一致:Playwright 官方镜像(自带 Chromium 与全部系统依赖),
# 避免 runner 宿主(Debian 11)不被 Playwright 1.62 支持的问题
container: mcr.microsoft.com/playwright:v1.62.1-noble
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
# v0.7.2-fix: 同上,e2e job 也不用 npm 缓存(cache-save post 失败风险)
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Verify Playwright browsers
run: npx playwright install chromium
- name: Run E2E smoke tests
run: npm run test:e2e