Skip to content

ENH: Conversation analysis page #69

ENH: Conversation analysis page

ENH: Conversation analysis page #69

Workflow file for this run

name: "Frontend build test"
on:
pull_request:
branches: ["ma*"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v4
# Set up Node.js
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
# Install dependencies
- name: Install dependencies
run: |
cd client
npm install
# Run the build command
- name: Run npm build
run: cd client && npm run build