Skip to content

Commit 1bcecb3

Browse files
committed
ci: possibly fix nuxt build
1 parent cfe7503 commit 1bcecb3

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/build_nightly.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ jobs:
5353
- name: install frontend dependencies
5454
run: bun install
5555

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+
5664
- name: Cache Bun modules
5765
uses: actions/cache@v3
5866
with:

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
dist
88
build
99

10-
# To ensure building will succeed on Github
11-
!.nuxt/tsconfig.json
12-
1310
# Node dependencies
1411
node_modules
1512

0 commit comments

Comments
 (0)