Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
anubra266 committed Jun 19, 2024
1 parent 8f811cd commit ecf4075
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Run ESLint
run: pnpm lint
env:
NODE_OPTIONS: '--max-old-space-size=4096'
NODE_OPTIONS: "--max-old-space-size=4096"

types:
name: TypeScript
Expand All @@ -66,3 +66,16 @@ jobs:

- name: Run TypeScript type check
run: pnpm typecheck

docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install
uses: ./.github/composite-actions/install

- name: Build docs
run: pnpm docs
3 changes: 1 addition & 2 deletions plugin/test-utils.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
//@ts-expect-error
import { RuleTester } from 'eslint-docgen'
import { RuleTester as ERuleTester } from 'eslint'
import parser from '@typescript-eslint/parser'

const baseTesterConfig = {
parser,
parser: require.resolve('@typescript-eslint/parser'),
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
Expand Down

0 comments on commit ecf4075

Please sign in to comment.