Skip to content

Add unit tests for edit, fetch, list, mcp, readFile, and search tools… #50

Add unit tests for edit, fetch, list, mcp, readFile, and search tools…

Add unit tests for edit, fetch, list, mcp, readFile, and search tools… #50

Workflow file for this run

name: Linting & Typechecking
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- "v*"
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Dependencies
run: make install
- name: Run linter
run: make lint
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Dependencies
run: make install
- name: Run type checks
run: make typecheck