dd64e1e34a
Root package: renamed to imhotep-monorepo, fixed broken scripts (test:unit/integration/e2e), removed inappropriate root deps, fixed build order, updated clean script CI: branch trigger main->master, npm ci->npm install, GitHub cache URL->Gitea Docs: replaced scaffolded root README with real project README, added package READMEs for imhotep/imhotep-playwright/imhotep-dsl/imhotep-core, added RELEASE.md checklist Version: all 14 packages and root aligned to 1.1.0, CHANGELOG test count fixed (1125) Metadata: 14 repository URLs github->gitea, 13 package descriptions added, imhotep-cli exports field added, SECURITY.md updated for Gitea+disclosure email Quality: noEmitOnError:true in 13 tsconfigs, collapsed duplicate interfaces in public.ts, clippedBy test->test.skip, fixed broken dynamic import in imhotep index.test.ts, 694 generated src artifacts cleaned, V8 logs removed, .gitignore updated
89 lines
2.3 KiB
YAML
89 lines
2.3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: https://gitea.com/actions/checkout@v4
|
|
- uses: https://gitea.com/actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: 'npm'
|
|
- run: npm install
|
|
- run: npm run lint
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: https://gitea.com/actions/checkout@v4
|
|
- uses: https://gitea.com/actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: 'npm'
|
|
- run: npm install
|
|
- run: npm run build
|
|
- run: npm run typecheck
|
|
- uses: https://gitea.com/actions/upload-artifact@v4
|
|
with:
|
|
name: dist
|
|
path: |
|
|
packages/*/dist
|
|
packages/*/tsconfig.tsbuildinfo
|
|
|
|
unit:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [18, 20, 22]
|
|
steps:
|
|
- uses: https://gitea.com/actions/checkout@v4
|
|
- uses: https://gitea.com/actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'npm'
|
|
- run: npm install
|
|
- uses: https://gitea.com/actions/download-artifact@v4
|
|
with:
|
|
name: dist
|
|
- run: npm test
|
|
- run: npm run test:integration -w imhotep-playwright
|
|
|
|
e2e:
|
|
needs: [build, lint, unit]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: https://gitea.com/actions/checkout@v4
|
|
- uses: https://gitea.com/actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: 'npm'
|
|
- run: npm install
|
|
- uses: https://gitea.com/actions/download-artifact@v4
|
|
with:
|
|
name: dist
|
|
- name: Cache Playwright browsers
|
|
uses: https://gitea.com/actions/cache@v4
|
|
with:
|
|
path: ~/.cache/ms-playwright
|
|
key: playwright-${{ runner.os }}-${{ hashFiles('package.json') }}
|
|
- run: npx playwright install chromium
|
|
- run: npm run test:e2e -w imhotep-fixtures
|
|
- run: npm run test:external-smoke
|
|
- run: npm run test -w imhotep-bench
|
|
- run: |
|
|
for pkg in packages/*/; do
|
|
name=$(node -p "require('./${pkg}package.json').name")
|
|
if [ -d "${pkg}dist" ]; then
|
|
echo "Packing $name..."
|
|
(cd "$pkg" && npm pack)
|
|
fi
|
|
done
|