Skip to content

chore(deps-dev): bump @types/node from 25.0.3 to 25.0.9 #2517

chore(deps-dev): bump @types/node from 25.0.3 to 25.0.9

chore(deps-dev): bump @types/node from 25.0.3 to 25.0.9 #2517

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
REGISTRY: ghcr.io
jobs:
lint:
name: Run linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # @v6.0.0
- name: Use Node.js 22.x
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # @v6.0.0
with:
node-version: 22.x
- run: npm install
- name: Lint Code
run: npm run lint
- name: Validate OpenAPI Spec
run: npm run validate-swagger
unit:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # @v6.0.0
- name: Use Node.js 22.x
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # @v6.0.0
with:
node-version: 22.x
- run: npm install
- run: npm run test:unit
integration:
name: Run Integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # @v6.0.0
- run: npm run test:integration:local