From c5193556242117737fc3ba95ee3692b7831ca04a Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Fri, 26 Apr 2024 09:04:29 -0700 Subject: feat(ci): category & unstable tags checker (#23568) --- .github/workflows/ci.generate.ts | 6 ++++++ .github/workflows/ci.yml | 3 +++ 2 files changed, 9 insertions(+) (limited to '.github/workflows') 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 @@ -664,6 +664,12 @@ const ci = { run: "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'", 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 -- cgit v1.2.3