Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/mcp-security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
cache: "npm"

- name: Install Node.js dependencies
Expand Down
16 changes: 5 additions & 11 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,18 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: "22.x"
cache: "npm"
- run: npm ci --include=dev
- run: npm run build --if-present
- run: npm run test:coverage
- name: Vitest Coverage Report
uses: davelosert/vitest-coverage-report-action@v2.8.3
if: matrix.node-version == '20.x'

audit:
runs-on: ubuntu-latest
Expand All @@ -40,7 +34,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
cache: "npm"
- run: npm ci --include=dev
- run: npm audit
Expand All @@ -53,7 +47,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
cache: "npm"
- run: npm ci --include=dev
- run: npx prettier --check .
Expand All @@ -66,7 +60,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
cache: "npm"
- run: npm ci --include=dev
- run: npm run lint
2 changes: 1 addition & 1 deletion .github/workflows/rapidast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
cache: "npm"

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/simulate-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js 20.x
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
cache: "npm"

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A Model Context Protocol (MCP) service that provides access to Ansible Automatio

## Prerequisites

- Node.js 18 or higher
- Node.js 22 or higher
- Access to an Ansible Automation Platform instance
- Valid AAP authentication token

Expand Down Expand Up @@ -316,7 +316,7 @@ The configuration system follows a hierarchical approach:

5. **Missing dependencies**:
- Run `npm install` to install required packages
- Ensure Node.js version 18 or higher is installed
- Ensure Node.js version 22 or higher is installed

### Configuration Validation

Expand Down
2 changes: 1 addition & 1 deletion docs/RAPIDAST.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Automated security scanning workflow that:

### Prerequisites

- Node.js 18.x or higher
- Node.js 22.x or higher
- Docker (for running RapiDAST container)
- curl (for health checks)

Expand Down
Loading