feat(asyncapi-generator-plugin): v3 asyncapi schema support + refactor to fix racing condition when writing files #514
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure the EventCatalog can build OK | |
name: Verify Build | |
on: | |
pull_request: | |
branches: | |
- master | |
- main | |
jobs: | |
build: | |
name: Verify Build | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: yarn | |
node-version: '16' | |
- name: Installation | |
run: yarn | |
- name: Check immutable yarn.lock | |
run: git diff --exit-code | |
- name: Build | |
run: yarn verify-build:catalog |