1
0
mirror of synced 2026-08-04 14:36:55 +00:00

devops: check that browser versions in README are up to date (#553)

This commit is contained in:
Yury Semikhatsky
2021-08-12 08:43:51 -07:00
committed by GitHub
parent cd3b45acd0
commit ebf9b09c34
3 changed files with 8 additions and 7 deletions
+4 -1
View File
@@ -22,6 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: microsoft/playwright-github-action@v1.5.0
- name: Cache Maven packages
uses: actions/cache@v2
with:
@@ -32,10 +33,12 @@ jobs:
run: scripts/download_driver_for_all_platforms.sh
- name: Regenerate APIs
run: scripts/generate_api.sh
- name: Update browser versions in README
run: scripts/update_readme.sh
- name: Verify API is up to date
run: |
if [[ -n $(git status -s) ]]; then
echo "ERROR: generated interfaces differ from the current sources:"
echo "ERROR: generated interfaces/docs differ from the current sources:"
git diff
exit 1
fi