Skip to content

ci(monorepo): Updated versions to test CI/CD. #15

ci(monorepo): Updated versions to test CI/CD.

ci(monorepo): Updated versions to test CI/CD. #15

Workflow file for this run

name: Regenerate Endpoints docs on change
on:
push:
paths:
- 'schemas/openapi.yml'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs/
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: npm i
- run: npm run generateEndpoints
- name: Commit changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git commit -am "Update endpoint docs" || echo "No changes to commit"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install swagger-cli
run: |
npm install -g swagger-cli
npm install -g openapi-format
- name: Lint and Convert openapi.yml to openapi.json and commit changes
run: |
cd ..
npx openapi-format schemas/openapi.yml --output schemas/openapi.yml
swagger-cli bundle -r schemas/openapi.yml -o schemas/openapi.json -t json
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add schemas/openapi.yml
git add schemas/openapi.json
git commit -am "Lint OpenAPI schemas" || echo "No changes to commit"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}