Skip to content

feat: convert OpenAPI to 3.1 and 3.2 #777

feat: convert OpenAPI to 3.1 and 3.2

feat: convert OpenAPI to 3.1 and 3.2 #777

Workflow file for this run

name: Node Tests CI
on:
push:
branches:
- '*' # Trigger on all branches
pull_request:
branches:
- '*' # Trigger on all branches
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '20', '22' ]
steps:
- uses: actions/checkout@v4
- name: Use 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 Unit Tests
run: npm run test