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 7fa686a commit 5dc42acCopy full SHA for 5dc42ac
.github/workflows/cypress-tests.yml
@@ -73,7 +73,15 @@ jobs:
73
DATABRICKS_HOSTNAME: ${{ secrets.DATABRICKS_HOSTNAME }}
74
DATABRICKS_HTTP_PATH: ${{ secrets.DATABRICKS_HTTP_PATH }}
75
DATABRICKS_ACCESS_TOKEN: ${{ secrets.DATABRICKS_ACCESS_TOKEN }}
76
- run: node scripts/runInteractiveCommand.js --configure
+ run: |
77
+ config_output=$(node scripts/runInteractiveCommand.js --configure)
78
+ echo "Dataforge configuration output: $config_output"
79
+ if echo "$config_output" | grep -q "Databricks connection validated successfully"; then
80
+ echo "Databricks connection validated successfully."
81
+ else
82
+ echo "Databricks connection validation failed."
83
+ exit 1
84
+ fi
85
86
- name: Initialize Dataforge
87
run: |
0 commit comments