Skip to content

Bump @types/node from 25.0.3 to 25.0.6 in /src/urlShortener/TypeScript #132

Bump @types/node from 25.0.3 to 25.0.6 in /src/urlShortener/TypeScript

Bump @types/node from 25.0.3 to 25.0.6 in /src/urlShortener/TypeScript #132

Workflow file for this run

# Display Name of the workflow
name: Test - OpenAPI Specification Schemas
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Run the unit tests on every change
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
Validate:
# Display name of the job
name: Validate OpenAPI Specs
# Operating system filter for the runners
runs-on: ubuntu-latest
# Set explicit least privilege permissions
permissions:
contents: read
# Run the set of steps needed to validate the OpenAPI Spec files
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- name: Download Source Files
uses: actions/checkout@v6
# Set up NodeJS on the build host
- name: Setup Node.JS Environment
uses: actions/setup-node@v6
with:
node-version: 24
# Sets up OpenJDK on the build host
- name: Set up Microsoft OpenJDK
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'microsoft'
# Install all of the dependencies
- name: Install All of the Project Dependencies
run: npm install @openapitools/openapi-generator-cli -g
# Run the validation of all Specification Files
- name: Validate OpenAPI Specs
run: |
for file in $(find ./specs -name "*.json"); do
openapi-generator-cli validate -i "$file"
done