Skip to content

Enhance ChatPanel with fullscreen support, MCP integration, and UI improvements #224

Enhance ChatPanel with fullscreen support, MCP integration, and UI improvements

Enhance ChatPanel with fullscreen support, MCP integration, and UI improvements #224

Workflow file for this run

name: PR pipeline to verify tests and code rules
on: [pull_request]
jobs:
Node-checks:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: NPM install
run: npm --prefix src/frontend/static/frontend i --legacy-peer-deps
- name: NPM linter checks
run: npm --prefix src/frontend/static/frontend run check-all