Skip to content

chore(packaging): include glama.json and smithery.yaml in package fil… #50

chore(packaging): include glama.json and smithery.yaml in package fil…

chore(packaging): include glama.json and smithery.yaml in package fil… #50

Workflow file for this run

name: CodeCommander tests
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Build TypeScript
run: npm run build
- name: Run tests
run: npm test
- name: Check npm package contents
run: npm pack --dry-run --json