Skip to content

Merge pull request #361 from asynkron/codex/fix-agent-prompt-loading-… #856

Merge pull request #361 from asynkron/codex/fix-agent-prompt-loading-…

Merge pull request #361 from asynkron/codex/fix-agent-prompt-loading-… #856

Workflow file for this run

name: CI Tests
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm # cache lockfile-based installs for faster runs
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test