Skip to content

Added MCP support

Added MCP support #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run copy-chartjs
- run: npm run compile
- run: npm test
- run: npx vsce package
if: github.ref == 'refs/heads/main'
- uses: actions/upload-artifact@v4
if: github.ref == 'refs/heads/main'
with:
name: vsix
path: "*.vsix"