mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-07-25 13:50:51 +02:00
chore: add rolling release
This commit is contained in:
@@ -89,45 +89,12 @@ jobs:
|
||||
- name: Install nodecar dependencies
|
||||
working-directory: ./nodecar
|
||||
run: |
|
||||
echo "DEBUG: Installing nodecar dependencies..."
|
||||
pnpm install --ignore-workspace --frozen-lockfile
|
||||
echo "DEBUG: Current directory: $(pwd)"
|
||||
echo "DEBUG: Contents of nodecar directory:"
|
||||
ls -la
|
||||
echo "DEBUG: Checking if package.json exists:"
|
||||
cat package.json | head -20
|
||||
echo "DEBUG: Checking pnpm version and cache:"
|
||||
pnpm --version
|
||||
echo "DEBUG: Running pnpm install..."
|
||||
pnpm install --frozen-lockfile
|
||||
echo "DEBUG: After pnpm install - checking node_modules:"
|
||||
ls -la node_modules/ | head -20
|
||||
echo "DEBUG: Checking what TypeScript can resolve:"
|
||||
npx tsc --noEmit --listFiles | head -20 || echo "TypeScript check failed"
|
||||
pnpm install --ignore-workspace --frozen-lockfile
|
||||
|
||||
- name: Build nodecar sidecar
|
||||
shell: bash
|
||||
working-directory: ./nodecar
|
||||
run: |
|
||||
echo "DEBUG: Building nodecar sidecar..."
|
||||
echo "DEBUG: Current directory: $(pwd)"
|
||||
echo "DEBUG: Contents of nodecar directory:"
|
||||
ls -la
|
||||
echo "DEBUG: Checking if node_modules still exists:"
|
||||
ls -la node_modules/ | head -10 || echo "node_modules not found!"
|
||||
echo "DEBUG: Checking TypeScript config:"
|
||||
cat tsconfig.json
|
||||
echo "DEBUG: Checking src directory:"
|
||||
ls -la src/
|
||||
echo "DEBUG: Testing individual imports:"
|
||||
echo "import { program } from 'commander';" > test-import.ts
|
||||
npx tsc --noEmit test-import.ts || echo "Commander import failed"
|
||||
echo "import getPort from 'get-port';" > test-import.ts
|
||||
npx tsc --noEmit test-import.ts || echo "get-port import failed"
|
||||
echo "import * as ProxyChain from 'proxy-chain';" > test-import.ts
|
||||
npx tsc --noEmit test-import.ts || echo "proxy-chain import failed"
|
||||
rm test-import.ts
|
||||
echo "DEBUG: Running nodecar build script..."
|
||||
pnpm run ${{ matrix.nodecar_script }}
|
||||
|
||||
- name: Copy nodecar binary to Tauri binaries
|
||||
|
||||
Reference in New Issue
Block a user