refactor: move Solid dev server to dedicated directory #6
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: Test MCP Server | |
| on: | |
| push: | |
| paths: | |
| - 'mcp-server/**' | |
| - '.github/workflows/test-mcp-server.yml' | |
| pull_request: | |
| paths: | |
| - 'mcp-server/**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v27 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - name: Install dependencies | |
| working-directory: mcp-server | |
| run: nix develop --command bun install | |
| - name: Run tests | |
| working-directory: mcp-server | |
| run: nix develop --command bun run test |