Skip to content

Merge pull request #8 from smithery-ai/add-smithery #7

Merge pull request #8 from smithery-ai/add-smithery

Merge pull request #8 from smithery-ai/add-smithery #7

Workflow file for this run

name: NPM Test
on:
push:
branches:
- main
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:ci