Skip to content

Style any captions in the AI chat response #1188

Style any captions in the AI chat response

Style any captions in the AI chat response #1188

Workflow file for this run

name: CI
on: [push]
jobs:
javascript-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: "^22"
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Format
run: yarn run fmt-check
- name: Lints
run: yarn run lint-check
- name: Typecheck
run: yarn typecheck
- name: Tests
run: yarn test
env:
CODECOV: true
NODE_ENV: test
- name: Build
run: yarn build
build-storybook:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: "^22"
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install
- name: Build Storybook
run: yarn build-storybook