Skip to content

Bump qs from 6.14.0 to 6.14.1 #83

Bump qs from 6.14.0 to 6.14.1

Bump qs from 6.14.0 to 6.14.1 #83

Workflow file for this run

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