chore: bump open api UI #1474
This file contains hidden or 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
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: "actions/checkout@v1" | |
| with: | |
| fetch-depth: 2 | |
| - uses: borales/actions-yarn@v3.0.0 | |
| with: | |
| cmd: install | |
| - uses: borales/actions-yarn@v3.0.0 | |
| with: | |
| cmd: run build | |
| - name: Check diff | |
| run: git diff | |
| # run: git diff --quiet || { echo "You forgot to run 'yarn run build'"; exit 1; } | |
| name: Generated content is up to date | |
| on: | |
| - push | |
| - pull_request |