Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat: 命盘 MCP Server v0.1.0 #2

feat: 命盘 MCP Server v0.1.0

feat: 命盘 MCP Server v0.1.0 #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test