File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "pattern" : " packages/**/*.ts" ,
3+ "ignore" : [" **node_modules**" , " **dist**" ],
4+ "gitignore" : true ,
5+ "threshold" : 1.34 ,
6+ "minLines" : 15
7+ }
Original file line number Diff line number Diff line change 5555 - run : npm run testCompile
5656 - run : npm run lint
5757
58+ jscpd :
59+ needs : lint-commits
60+ runs-on : ubuntu-latest
61+ strategy :
62+ matrix :
63+ node-version : [18.x]
64+ env :
65+ NODE_OPTIONS : ' --max-old-space-size=8192'
66+ steps :
67+ - uses : actions/checkout@v4
68+ - name : Use Node.js ${{ matrix.node-version }}
69+ uses : actions/setup-node@v4
70+ with :
71+ node-version : ${{ matrix.node-version }}
72+ - run : npm install jscpd
73+ - name : Run jscpd
74+ run : npx jscpd --config "$GITHUB_WORKSPACE/.github/workflows/jscpd.json"
75+
5876 macos :
5977 needs : lint-commits
6078 name : test macOS
You can’t perform that action at this time.
0 commit comments