Skip to content

Style chat, add scrolling, fix history button, update icons (#390) #828

Style chat, add scrolling, fix history button, update icons (#390)

Style chat, add scrolling, fix history button, update icons (#390) #828

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build and Test
timeout-minutes: 10
runs-on: ubuntu-latest
# To use enable remote caching just set these env vars up
# env:
# TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
# TURBO_TEAM: ${{ vars.TURBO_TEAM }}
# TURBO_REMOTE_ONLY: true
strategy:
matrix:
node-version: ['18.x', '20.x', '22.x']
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Lint & Check
run: pnpm lint && pnpm check-format
- name: Test
run: pnpm test