We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66e1f62 commit d43fae3Copy full SHA for d43fae3
.github/workflows/rust-tests.yml
@@ -30,6 +30,12 @@ jobs:
30
librsvg2-dev \
31
patchelf
32
33
+ - name: Stub Nuxt dist output
34
+ run: |
35
+ mkdir -p dist
36
+ test -f dist/index.html || echo '<!doctype html><title>stub</title>' > dist/index.html
37
+ working-directory: apps/desktop
38
+
39
- name: Cache Rust builds
40
uses: swatinem/rust-cache@v2
41
with:
.github/workflows/ui-tests.yml
@@ -28,6 +28,10 @@ jobs:
28
run: npm install
29
working-directory: apps/desktop
+ - name: Prepare Nuxt artifacts
+ run: npx nuxi prepare
- name: Run unit tests
run: npm run test:unit
0 commit comments