Skip to content

fix(chat): stop rendering a failed run's error twice #257

fix(chat): stop rendering a failed run's error twice

fix(chat): stop rendering a failed run's error twice #257

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify Node ${{ matrix.node-version }}
runs-on: ubuntu-22.04
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
node-version:
- 22
- 24
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Fetch pinned Bun runtime
run: node scripts/fetch-bun.mjs
- name: Verify
run: npm run verify
- name: Verify standalone website
run: |
npm ci --prefix website
npm test --prefix website
npm run build --prefix website