chore: readme updates #5
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: bookstore-api-optic | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- apps/bookstore-api/** | |
pull_request: | |
paths: | |
- apps/bookstore-api/** | |
workflow_call: | |
defaults: | |
run: | |
working-directory: apps/bookstore-api | |
jobs: | |
diff-all: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: yarn install | |
- name: Generate Spec | |
run: yarn generate-spec | |
- uses: opticdev/action@v1 | |
with: | |
# Your Optic Cloud Token | |
optic_token: ${{ secrets.OPTIC_TOKEN }} | |
# A GitHub token with access to create comments on pull requests | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# If true, standard check failures will cause this action to fail. | |
# If false, standard check failures will show in PR comments and | |
# in Optic Cloud but will not cause the action to fail | |
standards_fail: true | |
# If you have more than one spec, separate matches with commas | |
# (openapi.yml,other.yml) | |
additional_args: --match apps/bookstore-api/openapi.yml | |
compare_from_pr: cloud:default | |
compare_from_push: cloud:default |