Skip to content

chore(deps-dev): bump eslint from 10.8.1 to 10.9.1 #218

chore(deps-dev): bump eslint from 10.8.1 to 10.9.1

chore(deps-dev): bump eslint from 10.8.1 to 10.9.1 #218

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
core-cross-platform:
name: Core checks (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm run check:version-sync
- run: npm run check:changelog
- run: npm run lint
- run: npm run typecheck
- run: npm run test:cross-platform
macos-full:
name: Full CI (macos-latest)
runs-on: macos-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 24
cache: npm
- run: npm install -g @openai/codex
- run: codex --version
- run: npm ci
- run: npm run check:version-sync
- run: npm run check:changelog
- run: npm run lint
- run: npm run typecheck
- run: npm run test
- run: npm run test:integration
- run: npm run test:e2e
linux-full:
name: Full CI (ubuntu-latest)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 24
cache: npm
- run: npm install -g @openai/codex
- run: codex --version
- run: npm ci
- run: npm run check:version-sync
- run: npm run check:changelog
- run: npm run lint
- run: npm run typecheck
- run: npm run test
- run: npm run test:integration
- run: npm run test:e2e