File tree Expand file tree Collapse file tree 3 files changed +552
-547
lines changed Expand file tree Collapse file tree 3 files changed +552
-547
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,18 @@ runs:
1515 node-version : ${{ inputs.node_version }}
1616 cache : ' npm'
1717
18+ - name : Clean npm cache (force fresh install)
19+ run : npm cache clean --force
20+ shell : bash
21+
1822 - name : Install Node dependencies
1923 run : npm ci --prefer-offline
2024 shell : bash
2125
26+ - name : Verify installed dependencies
27+ run : npm list
28+ shell : bash
29+
2230 - name : Run `gulp prePublishNonBundle`
2331 run : npx gulp prePublishNonBundle
2432 shell : bash
Original file line number Diff line number Diff line change @@ -127,11 +127,8 @@ export default [
127127
128128 // Duplicates and overrides (TypeScript handles these)
129129 'no-dupe-class-members' : 'off' ,
130- '@typescript-eslint/no-dupe-class-members' : 'error' ,
131130 'no-redeclare' : 'off' ,
132131 'no-undef' : 'off' ,
133- 'no-useless-constructor' : 'off' ,
134- '@typescript-eslint/no-useless-constructor' : 'error' ,
135132
136133 // Miscellaneous rules
137134 'no-control-regex' : 'off' ,
You can’t perform that action at this time.
0 commit comments