File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 76
76
- name : Test
77
77
run : npm test
78
78
79
+ test-with-old-eslint-stylistic :
80
+ name : Test with old ESLint Stylistic
81
+ strategy :
82
+ matrix :
83
+ stylistic : [2, 3, 4]
84
+ runs-on : ubuntu-latest
85
+ steps :
86
+ - name : Checkout
87
+ uses : actions/checkout@v4
88
+ - name : Install Node.js
89
+ uses : actions/setup-node@v4
90
+ - name : Install Packages
91
+ run : npm install
92
+ - name : Install @stylistic/eslint-plugin v${{ matrix.stylistic }}
93
+ run : npm install -D @stylistic/eslint-plugin@${{ matrix.stylistic }} -f
94
+ - name : Test
95
+ run : npm test
96
+
79
97
test-with-typescript-eslint-v7 :
80
98
name : Test with typescript-eslint v7
81
99
runs-on : ubuntu-latest
86
104
uses : actions/setup-node@v4
87
105
- name : Install Packages
88
106
run : npm install
89
- - name : Install @typescript-eslint/parser@7
107
+ - name : Install @typescript-eslint/parser v7
90
108
run : npm install -D @typescript-eslint/parser@7 -f
91
109
- name : Test
92
110
run : npm test
You can’t perform that action at this time.
0 commit comments