Skip to content

chore(deps): bump body-parser and express in /examples/integrate-with… #976

chore(deps): bump body-parser and express in /examples/integrate-with…

chore(deps): bump body-parser and express in /examples/integrate-with… #976

name: Runtime testing C++ models
on:
push:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
paths:
- 'src/generators/cplusplus/**'
- 'test/runtime/runtime-cplusplus/**'
- 'test/runtime/**cplusplus**'
jobs:
test:
name: Runtime testing C++ Models
if: "github.event.pull_request.draft == false &&!((github.actor == 'asyncapi-bot' && startsWith(github.event.pull_request.title, 'ci: update global workflows')) || (github.actor == 'asyncapi-bot' && startsWith(github.event.pull_request.title, 'chore(release):')) || (github.actor == 'allcontributors' && startsWith(github.event.pull_request.title, 'docs: add')))"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Check package-lock version
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master
id: lockversion
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "${{ steps.lockversion.outputs.version }}"
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Build library
run: npm install && npm run build:prod
- name: Setup Cpp (C++ / C)
uses: aminya/[email protected]
- name: Generate C++ models
run: npm run generate:runtime:cplusplus
- name: Clone git submodules
run: git submodule update --init --recursive
- name: Run runtime tests
run: npm run test:runtime:cplusplus