2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 20:45:44 +00:00

Add js linting to github workflow

This commit is contained in:
Oliver Walters
2021-08-28 20:59:41 +10:00
parent f57a31c9b5
commit d0ccf8647d
3 changed files with 30 additions and 6 deletions

View File

@ -74,20 +74,27 @@ class RenderJavascriptFiles(TestCase):
js_files = pathlib.Path(directory).rglob('*.js')
n = 0
for f in js_files:
js = os.path.basename(f)
self.download_file(js, prefix)
n += 1
return n
def test_render_files(self):
"""
Look for all javascript files
"""
self.download_files('translated', '/js/i18n')
self.download_files('dynamic', '/js/dynamic')
n = 0
print("Rendering javascript files...")
n += self.download_files('translated', '/js/i18n')
n += self.download_files('dynamic', '/js/dynamic')
print(f"Rendered {n} javascript files.")