devops: verify clean tree on bots after build (#5354)

This commit is contained in:
Max Schmitt 2021-02-16 22:38:09 +01:00 committed by GitHub
parent f2b25fe6bd
commit 7971bb0335
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,13 @@ jobs:
- run: npm ci
- run: npm run build
- run: npm run lint
- name: Verify clean tree
run: |
if [[ -n $(git status -s) ]]; then
echo "ERROR: tree is dirty after npm run build:"
git diff
exit 1
fi
build-playwright-driver:
name: "build-playwright-driver"