File tree Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Original file line number Diff line number Diff line change 72
72
- name : Install Packages
73
73
run : npm install
74
74
- name : Uninstall @stylistic/eslint-plugin
75
- run : npm uninstall -D @stylistic/eslint-plugin
75
+ run : npm uninstall @stylistic/eslint-plugin
76
+ - name : Test
77
+ run : npm test
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 }} --force
76
94
- name : Test
77
95
run : npm test
78
96
86
104
uses : actions/setup-node@v4
87
105
- name : Install Packages
88
106
run : npm install
89
- - name : Install @typescript-eslint/parser@7
90
- run : npm install -D @typescript-eslint/parser@7 -f
107
+ - name : Install @typescript-eslint/parser v7
108
+ run : npm install -D @typescript-eslint/parser@7 --force
91
109
- name : Test
92
110
run : npm test
You can’t perform that action at this time.
0 commit comments