MCP Ripgrep Server

by mcollina
Verified
name: ci on: push: paths-ignore: - 'docs/**' - '*.md' pull_request: paths-ignore: - 'docs/**' - '*.md' jobs: test: runs-on: ubuntu-latest strategy: matrix: node-version: ['>=20.18.3', 22.x, 23.x] steps: - uses: actions/checkout@v4 - name: Use Node.js uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install run: | npm install - name: Run tests run: | npm run test