ci(monorepo): Updated versions to test CI/CD. #15
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: 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 "no-reply@github.com" | |
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 "no-reply@github.com" | |
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 }} |