Skip to content

Updated project description and homepage in package.json #421

Updated project description and homepage in package.json

Updated project description and homepage in package.json #421

Workflow file for this run

name: Test and Validate
on:
push:
branches: [ main, develop, 'feature/*' ]
pull_request:
branches: [ main, develop ]
permissions:
contents: read
jobs:
test:
name: Test on Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22, 24]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
env:
MAIASS_AI_MODE: off
- name: Test CLI entry point
run: |
node maiass.mjs --version
node maiass.mjs --help
env:
MAIASS_AI_MODE: off