fix(session-sync): back up Claude sessions from CLAUDE_CONFIG_DIR (#422) #1322
Workflow file for this run
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: Checking Dependencies | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| dist-deps-prune: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup | |
| with: | |
| node-version: 24.14.0 | |
| - run: bun run --cwd packages/app build | |
| - name: Dist deps prune (lint) | |
| run: bun run check:dist-deps-prune |