Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,20 @@ jobs:
cache: 'npm'
cache-dependency-path: frontend/package-lock.json

- name: Build frontend
- name: Install deps (frontend)
working-directory: frontend
run: npm ci

- name: Debug TypeScript config and paths
working-directory: frontend
run: |
cd frontend
npm ci
npm run build
npx tsc -p tsconfig.json --showConfig | sed -n '1,200p'
ls -la src/lib || true
grep -R --line-number --color=never "from '@/lib" src || true

- name: Build frontend
working-directory: frontend
run: npm run build

- name: Copy files to server
uses: appleboy/scp-action@v0.1.7
Expand Down