From 001a0da37659de8cc152cdbf4444c27c2e8e1a37 Mon Sep 17 00:00:00 2001 From: Peter Nitsche Date: Sat, 29 Jul 2023 17:55:07 +0200 Subject: [PATCH] fix failing linting step in pipeline --- .github/workflows/build.yml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e4a5bc1ad80080..46c6a3bd1e0ac6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -269,8 +269,8 @@ jobs: - name: Lint fenced code blocks run: yarn -s doc-fence-check - - name: Lint website docs - run: yarn -s lint-website-docs + - name: Lint documentation + run: yarn -s lint-documentation lint-other: needs: [setup] diff --git a/package.json b/package.json index 7f6e80d82b690d..d9fb273a830d92 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "debug": "cross-env NODE_OPTIONS=--inspect-brk ts-node lib/renovate.ts", "doc-fix": "run-s markdown-lint-fix prettier-fix", "doc-fence-check": "node tools/check-fenced-code.mjs", - "lint-website-docs": "jest --coverage false test/website-docs.spec.ts", + "lint-documentation": "jest --coverage false test/documentation.spec.ts", "eslint": "eslint . --cache --cache-location .cache/eslint --report-unused-disable-directives", "eslint-fix": "eslint --cache --cache-location .cache/eslint --fix . --report-unused-disable-directives", "eslint-ci": "eslint . --cache --cache-strategy content --cache-location .cache/eslint --format gha",