diff options
author | David Snopek <dsnopek@gmail.com> | 2024-02-23 16:22:37 -0600 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-02-23 16:24:58 -0600 |
commit | fa81e125889383f4ffd1404dd71def1ae60964c0 (patch) | |
tree | 6611f9e9150d5573477b68331c32ab4d9d676c41 /.github | |
parent | 3abb32671e6c7aa109e494f7077da955b173cfa9 (diff) | |
download | redot-engine-fa81e125889383f4ffd1404dd71def1ae60964c0.tar.gz |
Fix lint errors in WebXR module
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static_checks.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index e7ebd2fb64..cf8b0f4132 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -76,7 +76,7 @@ jobs: - name: JavaScript style and documentation checks via ESLint and JSDoc run: | - if grep -q "platform/web" changed.txt || [ -z "$(cat changed.txt)" ]; then + if grep -q "\.js" changed.txt || [ -z "$(cat changed.txt)" ]; then cd platform/web npm ci npm run lint |