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 e1cc9fe commit 7fa686aCopy full SHA for 7fa686a
.github/workflows/cypress-tests.yml
@@ -76,7 +76,15 @@ jobs:
76
run: node scripts/runInteractiveCommand.js --configure
77
78
- name: Initialize Dataforge
79
- run: dataforge --init
+ run: |
80
+ init_output=$(dataforge --init)
81
+ echo "Dataforge initialization output: $init_output"
82
+ if echo "$init_output" | grep -q "Initialized project"; then
83
+ echo "Dataforge initialized successfully."
84
+ else
85
+ echo "Dataforge initialization failed."
86
+ exit 1
87
+ fi
88
89
- name: Run interactive Dataforge seeding
90
run: node scripts/runInteractiveCommand.js --seed
0 commit comments