Add METHODOLOGY.md with Vortex Method documentation #141
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Lint | |
| run: bun run lint | |
| - name: Type check | |
| run: bun x tsc --noEmit | |
| - name: Test | |
| run: bun test | |
| - name: Build packages | |
| run: | | |
| cd packages/wave-toolkit && bun run build | |
| cd ../atom-trail && bun run build | |
| cd ../ax-signatures && bun run build | |
| deploy-mcp: | |
| needs: build | |
| if: github.ref == 'refs/heads/main' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install | |
| - name: Build MCP Server | |
| run: cd apps/mcp-server && bun run build |