Skip to content

changed return value of getHello #5

changed return value of getHello

changed return value of getHello #5

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- master
jobs:
doc-check:
name: Run Documentation Check
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install Dependencies
id: bun-install
run: bun install --frozen-lockfile
- name: Save OpenAPI Specification
id: bun-save-oas
run: bun save-oas
- name: Check Documentaiton
id: doc-check
uses: alexvuka1/doc-check@6f44df86f644ef31b6d9c67b05f08570ab590841
with:
openapi-path: ${{ github.workspace }}/openapi.json
doc-path: ${{ github.workspace }}/docs/api.md
token: ${{ secrets.GITHUB_TOKEN }}