Skip to content

feat: update Phase 0 for current Codex telemetry #8

feat: update Phase 0 for current Codex telemetry

feat: update Phase 0 for current Codex telemetry #8

Workflow file for this run

name: Test
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm test
- name: Check JavaScript syntax
shell: bash
run: |
while IFS= read -r -d '' file; do
node --check "$file"
done < <(find bin lib test tools/phase0 -type f -name '*.js' -print0)