Add notebook and lexical tools for usage in frontend MCP #155
Workflow file for this run
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: Code Quality | |
| on: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| branches: ['*'] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| format-check: | |
| name: Format Check (Prettier) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run Format Checks | |
| run: | | |
| echo "::group::Running Format Checks" | |
| npm run format:check | |
| echo "✓ Prettier passed" | |
| echo "::endgroup::" | |
| lint-check: | |
| name: Lint Check (ESLint) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run Lint Checks | |
| run: | | |
| echo "::group::Running Lint Checks" | |
| echo "Running ESLint..." | |
| npm run lint | |
| echo "✓ ESLint passed" | |
| echo "::endgroup::" | |
| type-check: | |
| name: Type Check (TypeScript) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build project | |
| run: npm run build | |
| - name: Run Type Checks | |
| run: | | |
| echo "::group::Running Type Checks" | |
| npm run type-check | |
| echo "✓ TypeScript passed" | |
| echo "::endgroup::" |