don't put dist in pwd when building
Some checks failed
Cargo / build (push) Successful in 18s
Cargo / ui (push) Successful in 36s
Cargo / check (push) Successful in 32s
Cargo / test (push) Failing after 3m11s

This commit is contained in:
2025-07-18 16:33:48 +01:00
parent 870228051d
commit 3b6794d1c7
2 changed files with 4 additions and 3 deletions

View File

@ -93,9 +93,10 @@ jobs:
${{ runner.os }}-cargo-test- ${{ runner.os }}-cargo-test-
- name: Download dist - name: Download dist
uses: https://gitea.com/actions/download-artifact@v3 uses: https://gitea.com/actions/download-artifact@v3
working-directory: ui
with: with:
name: dist-${{ hashFiles('ui/src/**') }} name: dist-${{ hashFiles('src/**') }}
path: dist path: ../dist
- name: ls - name: ls
run: | run: |
ls ls

View File

@ -9,7 +9,7 @@
"preview": "vite preview", "preview": "vite preview",
"test:unit": "vitest", "test:unit": "vitest",
"test:e2e": "nightwatch tests/e2e/*", "test:e2e": "nightwatch tests/e2e/*",
"build-only": "vite build --outDir ../dist", "build-only": "vite build",
"type-check": "vue-tsc --build", "type-check": "vue-tsc --build",
"lint": "eslint . --fix", "lint": "eslint . --fix",
"format": "prettier --write src/" "format": "prettier --write src/"