The v7 source at the repo root is untouched; v8 work lives in packages/. See docs/v8.md for layout and status against the modernization plan. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014NgfSjHE11oFpoSnLVKLXd
21 lines
343 B
YAML
21 lines
343 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches: [master, v8]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node: [24, 26]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
- run: npm install
|
|
- run: npm test
|