From 86d771e3b2b4b514606f0e2d7ec8231d037cb476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Verit=C3=A9=20Mugabo?= Date: Thu, 12 Sep 2024 23:53:24 -0400 Subject: [PATCH] docs: update docs url (#532) * docs: update docs url * chore: improve ci --- .github/workflows/ci.yml | 5 ++++- src/utils/index.ts | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a01a162..b32b9c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,10 +34,13 @@ jobs: path: ${{ env.STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | - ${{ runner.os }}-pnpm-store- + ${{ runner.os }}-pnpm-store- - name: install run: pnpm install - name: test run: pnpm test:ci + + - name: typecheck + run: pnpm tsc diff --git a/src/utils/index.ts b/src/utils/index.ts index 9749ef0..0fe1647 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -20,7 +20,7 @@ interface PluginDocs { export function createEslintRule(rule: Readonly>) { const createRule = ESLintUtils.RuleCreator( ruleName => - `https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/${ruleName}.md` + `https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/${ruleName}.md` ) return createRule(rule) as unknown as Rule.RuleModule