FastMCP working #19
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 Deploy CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| vendoring: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] # , windows-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install project dependencies | |
| run: npm install | |
| - name: Run build with npm script | |
| run: npm run build | |
| - name: Lint and format | |
| run: npm run lint | |
| - name: Test worker deployment | |
| run: npm run deploy -- --dry-run | |
| - name: Run tests | |
| run: npm run test |