We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfe7503 commit 1bcecb3Copy full SHA for 1bcecb3
.github/workflows/build_nightly.yml
@@ -53,6 +53,14 @@ jobs:
53
- name: install frontend dependencies
54
run: bun install
55
56
+ - name: generate nuxt artifacts
57
+ run: bun run postinstall
58
+
59
+ - name: Verify .nuxt directory
60
+ run: |
61
+ ls -la .nuxt
62
+ [ -f .nuxt/tsconfig.json ] && echo "tsconfig exists" || echo "tsconfig is missing"
63
64
- name: Cache Bun modules
65
uses: actions/cache@v3
66
with:
.gitignore
@@ -7,9 +7,6 @@
7
dist
8
build
9
10
-# To ensure building will succeed on Github
11
-!.nuxt/tsconfig.json
12
-
13
# Node dependencies
14
node_modules
15
0 commit comments