diff options
Diffstat (limited to '.github')
| -rwxr-xr-x | .github/workflows/ci.generate.ts | 6 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index da9c55ff7..2ee48d511 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -665,6 +665,12 @@ const ci = { "deno run --unstable --allow-write --allow-read --allow-run --allow-net ./tools/lint.js", }, { + name: "jsdoc_checker.js", + if: "matrix.job == 'lint'", + run: + "deno run --allow-read --allow-env --allow-sys ./tools/jsdoc_checker.js", + }, + { name: "node_compat/setup.ts --check", if: "matrix.job == 'lint' && matrix.os == 'linux'", run: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a670a66a9..4709abf48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -396,6 +396,9 @@ jobs: - name: lint.js if: '!(matrix.skip) && (matrix.job == ''lint'')' run: deno run --unstable --allow-write --allow-read --allow-run --allow-net ./tools/lint.js + - name: jsdoc_checker.js + if: '!(matrix.skip) && (matrix.job == ''lint'')' + run: deno run --allow-read --allow-env --allow-sys ./tools/jsdoc_checker.js - name: node_compat/setup.ts --check if: '!(matrix.skip) && (matrix.job == ''lint'' && matrix.os == ''linux'')' run: deno run --allow-write --allow-read --allow-run=git ./tests/node_compat/runner/setup.ts --check |
