Skip to content

Initial release: AI Maestro Gateway Services #1

Initial release: AI Maestro Gateway Services

Initial release: AI Maestro Gateway Services #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
gateway: [discord-gateway, slack-gateway, email-gateway, whatsapp-gateway]
defaults:
run:
working-directory: ${{ matrix.gateway }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: ${{ matrix.gateway }}/package-lock.json
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run typecheck --if-present
- name: Test
run: npm test --if-present