devops: verify clean tree on bots after build (#5354)
This commit is contained in:
parent
f2b25fe6bd
commit
7971bb0335
7
.github/workflows/infra.yml
vendored
7
.github/workflows/infra.yml
vendored
|
|
@ -23,6 +23,13 @@ jobs:
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
- run: npm run lint
|
- 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:
|
build-playwright-driver:
|
||||||
name: "build-playwright-driver"
|
name: "build-playwright-driver"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue