File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 checks : write
1919 steps :
2020 - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
21- with :
22- ref : ${{ github.event.pull_request.head.sha }}
2321
2422 - name : Install pnpm
2523 uses : pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320
3432 cache : ' pnpm'
3533
3634 - name : Install dependencies
37- run : pnpm install --frozen-lockfile
35+ run : pnpm install --frozen-lockfile --ignore-scripts
36+
37+ - name : Checkout PR source files
38+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
39+ with :
40+ ref : ${{ github.event.pull_request.head.sha }}
41+ sparse-checkout : src
42+ path : __pr_src
43+
44+ - name : Overlay PR source
45+ run : |
46+ rm -rf src
47+ cp -r __pr_src/src src
48+ rm -rf __pr_src
3849
3950 - uses : reviewdog/action-eslint@556a3fdaf8b4201d4d74d406013386aa4f7dab96
4051 with :
You can’t perform that action at this time.
0 commit comments