fix(cli): support --yes flag for unattended dataset import #47499
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Dependency check | |
| on: | |
| push: | |
| jobs: | |
| depCheck: | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/setup | |
| - name: Check for unused/missing dependencies | |
| id: depcheck | |
| run: pnpm depcheck | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=8192 |