Skip to content

Merge pull request #62 from i-snyder/codex/runtime-input-wire-compat #115

Merge pull request #62 from i-snyder/codex/runtime-input-wire-compat

Merge pull request #62 from i-snyder/codex/runtime-input-wire-compat #115

Workflow file for this run

name: CI
on:
push:
branches:
- main
- beta
pull_request:
branches:
- main
- beta
jobs:
build-typecheck-smoke:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Typecheck
run: npm run typecheck
- name: Smoke test
run: npm run smoke
dynamic-groups-test:
runs-on: ubuntu-latest
needs: build-typecheck-smoke
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Dynamic groups test
run: npm run test:dynamic-groups
audit-production-deps:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Audit production dependencies
run: npm audit --omit=dev