Bump qs from 6.14.0 to 6.14.1 #83
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: Tests | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-latest] | |
| node-version: ["20.x"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| - name: Lint | |
| run: | | |
| npm run lint | |
| - name: Check Formatting | |
| run: | | |
| npm run format | |
| - name: Build project | |
| run: | | |
| npm run build | |
| ./tasks.sh prepare-build | |
| - name: Validate MCP Server | |
| run: | | |
| npm install -g @anthropic-ai/mcpb | |
| mcpb validate build | |
| - name: Run tests | |
| env: | |
| TXG_CLI_ACCESS_TOKEN: test_token_for_ci | |
| NODE_ENV: test | |
| run: | | |
| npm test |