Skip to content

Adapt example client for scale flow #3

Adapt example client for scale flow

Adapt example client for scale flow #3

Workflow file for this run

name: Validate AsyncAPI spec
on:
pull_request:
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: npm
cache-dependency-path: example-client/package-lock.json
- name: Validate
shell: bash
working-directory: example-client/
run: |
npm ci
npm run validate