Skip to content

Stop forcing fast Codex service tier #4

Stop forcing fast Codex service tier

Stop forcing fast Codex service tier #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install
run: npm ci
- name: Test
run: npm run test:ci