We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 979182b commit 63ea579Copy full SHA for 63ea579
.github/workflows/ci.yml
@@ -32,8 +32,15 @@ jobs:
32
run: python -m playwright install
33
- name: Lint
34
run: pre-commit run --all-files
35
- - name: Test Sync generation script
36
- run: bash scripts/verify_api.sh
+ - name: Generate APIs
+ run: bash scripts/update_api.sh
37
+ - name: Verify API is up to date
38
+ run: |
39
+ if [[ -n $(git status -s) ]]; then
40
+ echo "ERROR: generated code differ from the current sources:"
41
+ git diff
42
+ exit 1
43
+ fi
44
build:
45
name: Build
46
timeout-minutes: 30
scripts/verify_api.sh
0 commit comments