File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -523,6 +523,34 @@ jobs:
523
523
env :
524
524
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
525
525
526
+ asyncapi-generation :
527
+ name : AsyncAPI Generation
528
+ runs-on : ubuntu-latest
529
+ continue-on-error : true
530
+ timeout-minutes : 15
531
+ steps :
532
+ - uses : actions/checkout@v4
533
+ with :
534
+ persist-credentials : false
535
+ - name : Use Node.js
536
+ uses : actions/setup-node@v4
537
+ with :
538
+ node-version-file : " .node-version"
539
+ - name : Prepare Environment
540
+ run : |
541
+ cd packages
542
+ yarn
543
+ env :
544
+ CI : true
545
+ - name : Run generator
546
+ run : |
547
+ cd packages/live-status-gateway
548
+
549
+ yarn gendocs
550
+ yarn genserver
551
+ env :
552
+ CI : true
553
+
526
554
publish-docs :
527
555
name : Publish Docs
528
556
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments