ENH: Conversation analysis page #69
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |