From da8691d7d7b712722251f67fffce63a1bff67d6b Mon Sep 17 00:00:00 2001 From: Steve Howell Date: Sun, 26 Jul 2020 07:13:16 +0000 Subject: [PATCH] ci: Add new check-node-fixtures tool to CI. This tool only takes a couple seconds to run, so it's pretty low risk to add to CI. --- tools/ci/frontend | 3 +++ tools/test-all | 1 + 2 files changed, 4 insertions(+) diff --git a/tools/ci/frontend b/tools/ci/frontend index 33abcbac59..76f5c298f6 100755 --- a/tools/ci/frontend +++ b/tools/ci/frontend @@ -10,6 +10,9 @@ set -x # Run the node tests first, since they're fast and deterministic ./tools/test-js-with-node --coverage +# Check the node fixtures (also fast) +./tools/check-node-fixtures + # Check capitalization of strings ./manage.py makemessages --locale en PYTHONWARNINGS=ignore ./tools/check-capitalization --no-generate diff --git a/tools/test-all b/tools/test-all index dfb669ff74..e897083d46 100755 --- a/tools/test-all +++ b/tools/test-all @@ -69,6 +69,7 @@ run ./tools/test-api # ci/frontend run ./tools/lint --groups=frontend $FORCEARG run ./tools/test-js-with-node +run ./tools/check-node-fixtures run ./manage.py makemessages --locale en run env PYTHONWARNINGS=ignore ./tools/check-capitalization --no-generate run env PYTHONWARNINGS=ignore ./tools/check-frontend-i18n --no-generate