Skip to content

Commit 32a1b5d

Browse files
committed
fix(ci): add comprehensive environment variables and version debugging
1 parent a2fc029 commit 32a1b5d

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ jobs:
7979

8080
- name: Install dependencies
8181
run: |
82+
echo "Node.js version:"
83+
node --version
84+
echo "npm version:"
85+
npm --version
8286
echo "Installing dependencies..."
8387
npm ci
8488
echo "Dependencies installed successfully"
@@ -98,6 +102,31 @@ jobs:
98102
NEXT_PUBLIC_APP_NAME: Stellar Nexus
99103
NEXT_PUBLIC_APP_VERSION: 0.1.0
100104
NODE_ENV: production
105+
NEXT_PUBLIC_PLATFORM_FEE_PERCENTAGE: 4
106+
NEXT_PUBLIC_DEFAULT_ESCROW_DEADLINE_DAYS: 7
107+
NEXT_PUBLIC_DEBUG_MODE: false
108+
NEXT_PUBLIC_ESCROW_FEATURES_ENABLED: true
109+
NEXT_PUBLIC_WALLET_FEATURES_ENABLED: true
110+
NEXT_PUBLIC_DEMO_FEATURES_ENABLED: true
111+
NEXT_PUBLIC_AI_FEATURES_ENABLED: true
112+
NEXT_PUBLIC_ANIMATIONS_ENABLED: true
113+
NEXT_PUBLIC_GLASSMORPHISM_ENABLED: true
114+
NEXT_PUBLIC_GRADIENT_EFFECTS_ENABLED: true
115+
NEXT_PUBLIC_LAZY_LOADING_ENABLED: true
116+
NEXT_PUBLIC_IMAGE_OPTIMIZATION_ENABLED: true
117+
NEXT_PUBLIC_CODE_SPLITTING_ENABLED: true
118+
NEXT_PUBLIC_CONTENT_SECURITY_POLICY_ENABLED: true
119+
NEXT_PUBLIC_XSS_PROTECTION_ENABLED: true
120+
NEXT_PUBLIC_FRAME_OPTIONS_ENABLED: true
121+
NEXT_PUBLIC_ANALYTICS_ENABLED: false
122+
NEXT_PUBLIC_ERROR_REPORTING_ENABLED: false
123+
NEXT_PUBLIC_AI_ASSISTANT_ENABLED: true
124+
NEXT_PUBLIC_AI_ASSISTANT_NAME: NEXUS PRIME
125+
NEXT_PUBLIC_AI_ASSISTANT_VOICE_ENABLED: true
126+
NEXT_PUBLIC_DEMO_MODE_ENABLED: true
127+
NEXT_PUBLIC_DEMO_DATA_ENABLED: true
128+
NEXT_PUBLIC_FREIGHTER_APP_ID: stellar-nexus-experience
129+
NEXT_PUBLIC_ALBEDO_APP_NAME: Stellar Nexus Experience
101130
run: |
102131
echo "Environment variables set:"
103132
echo "NODE_ENV: $NODE_ENV"

0 commit comments

Comments
 (0)