Skip to content

Commit 2ce65c6

Browse files
committed
Fix checks workflow missing db
1 parent 77cea11 commit 2ce65c6

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/checks.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@ jobs:
3131
- name: Install Dependencies
3232
run: npm ci --ignore-scripts
3333

34-
- name: Prepare nuxt dependencies
35-
run: npm run postinstall
34+
- name: Nuxt Prepare
35+
run: nuxt prepare
36+
37+
- name: Generate data
38+
run: npm run generate-data
3639

3740
- name: Check Formatting
3841
run: npm run format:check

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"packageManager": "[email protected]+sha512.77f3fb0dbbd881835d7bd1217deabdf7ed77fc4ec4f363df64fc3cb986404abf6c437661041080f5c5d225103508e7c9ea30cb2742b7e942675d05a10af2d7b9",
2222
"scripts": {
2323
"prepare": "husky",
24-
"postinstall": "nuxt prepare && ($CI = true || (dependabot-config && editor-config))",
24+
"postinstall": "$CI = true || (dependabot-config && editor-config)",
2525
"new-artist": "node scripts/new-artist.mjs",
2626
"new-logo": "node scripts/new-logo.mjs",
2727
"predev": "npm run prebuild",

0 commit comments

Comments
 (0)