File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 52
52
- name : Run ESLint
53
53
run : pnpm lint
54
54
env :
55
- NODE_OPTIONS : ' --max-old-space-size=4096'
55
+ NODE_OPTIONS : " --max-old-space-size=4096"
56
56
57
57
types :
58
58
name : TypeScript
66
66
67
67
- name : Run TypeScript type check
68
68
run : pnpm typecheck
69
+
70
+ docs :
71
+ name : Docs
72
+ runs-on : ubuntu-latest
73
+ steps :
74
+ - name : Checkout
75
+ uses : actions/checkout@v4
76
+
77
+ - name : Install
78
+ uses : ./.github/composite-actions/install
79
+
80
+ - name : Build docs
81
+ run : pnpm docs
Original file line number Diff line number Diff line change 1
1
//@ts -expect-error
2
2
import { RuleTester } from 'eslint-docgen'
3
3
import { RuleTester as ERuleTester } from 'eslint'
4
- import parser from '@typescript-eslint/parser'
5
4
6
5
const baseTesterConfig = {
7
- parser,
6
+ parser : require . resolve ( '@typescript-eslint/parser' ) ,
8
7
parserOptions : {
9
8
ecmaVersion : 'latest' ,
10
9
sourceType : 'module' ,
You can’t perform that action at this time.
0 commit comments