Skip to content

feat: add thread chat previews to dashboard workspace cards #94

feat: add thread chat previews to dashboard workspace cards

feat: add thread chat previews to dashboard workspace cards #94

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository 🛎️
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Get Playwright version
id: playwright-version
run: |
cd packages/client
echo "version=$(pnpm list @playwright/test --json | jq -r '.[0].devDependencies["@playwright/test"].version')" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@v4
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}
- name: Install Playwright Browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: cd packages/client && npx playwright install --with-deps
- name: Generate SSL Certificates
run: pnpm run certs
- name: Build 🔧
run: pnpm run build
- name: Check
run: pnpm run check
- name: Test
run: pnpm run test