diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-02-26 15:31:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-26 15:31:44 +0100 |
commit | 75d03f1fbd94efb5f8756e405de03cf271435336 (patch) | |
tree | 8b9c29410fafdd55c67fc54acb21522a0e957bb8 /.github | |
parent | 40a70f1657dc9107666b78b58e97e8615ea7f3ff (diff) | |
parent | 472482013e760b0c0334d99b7bf21d9bd2a3a206 (diff) |
Merge pull request #46446 from Faless/js/4.x_jsdoc
[HTML5] Document Engine and EngineConfig (jsdoc).
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static_checks.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index 12270a848a..30468034ff 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -35,11 +35,12 @@ jobs: run: | bash ./misc/scripts/black_format.sh - - name: JavaScript style checks via ESLint + - name: JavaScript style and documentation checks via ESLint and JSDoc run: | cd platform/javascript npm ci npm run lint + npm run docs -- -d dry-run - name: Documentation checks run: | |