Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

chore: update @asyncapi/cli to 0.58.10 version #551

chore: update @asyncapi/cli to 0.58.10 version

chore: update @asyncapi/cli to 0.58.10 version #551

name: Examples PR testing
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
test:
if: github.event.pull_request.draft == false
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install dependencies
id: first-installation
run: npm ci
- name: Generate examples
run: npm run generate:examples
- name: Build examples
run: npm run build:examples