Remove doc folder #9
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
name: AsyncAPI documents validate | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '.github/workflows/asyncApiValidate.yml' | |
- 'src/main/resources/schemas/**' | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 19 | |
- name: install generator | |
run: npm install -g @asyncapi/cli | |
- name: generate documentaion (denne tar litt tid) | |
working-directory: src/main/resources/schemas | |
run: asyncapi validate veilarboppfolging.asyncapi.yml |