summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2024-04-26 09:04:29 -0700
committerGitHub <noreply@github.com>2024-04-26 09:04:29 -0700
commitc5193556242117737fc3ba95ee3692b7831ca04a (patch)
tree914870befca84cc3bd928f5a0c3f6c39ed281fbd /.github/workflows
parent0b0af5c635872132d1c727f13ca05aa9be3d1c3a (diff)
feat(ci): category & unstable tags checker (#23568)
Diffstat (limited to '.github/workflows')
-rwxr-xr-x.github/workflows/ci.generate.ts6
-rw-r--r--.github/workflows/ci.yml3
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