fix: regenerate openapi specs with override fixes #206
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
on: | |
push: | |
paths-ignore: | |
- cache/** | |
- generated/** | |
name: Dry-run the update process | |
env: | |
NODE_OPTIONS: --max-old-space-size=8192 | |
jobs: | |
update_dry_run: | |
runs-on: ubuntu-latest | |
# These steps should be kept in sync with `update.yml` - minus the code that actually | |
# commits, pushes and creates a PR. | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: 18 | |
- run: npm ci | |
- run: npm run download | |
# - uses: actions/checkout@v3 # tag=v3 | |
# with: | |
# repository: xuorig/anicca | |
# path: anicca | |
# - uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # tag=v1 | |
# with: | |
# toolchain: stable | |
# - run: cargo build | |
# working-directory: anicca | |
- run: npm run build |