Skip to content

Keep Start Chat Button Disabled Until Reasonable #3

Keep Start Chat Button Disabled Until Reasonable

Keep Start Chat Button Disabled Until Reasonable #3

Workflow file for this run

name: Node.js CI
on:
push:
branches: [trunk]
pull_request:
branches: [trunk]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
working-directory: ./view/web
run: npm install
- name: Build TypeScript code
working-directory: ./view/web
run: npm run build
- name: Run Vitest tests
working-directory: ./view/web
run: npm run test