We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bac70b commit cff9a02Copy full SHA for cff9a02
.github/workflows/ci.yml
@@ -23,6 +23,15 @@ jobs:
23
node-version: 22
24
cache: pnpm
25
26
+ # Add debug step to verify environment
27
+ - name: Debug environment
28
+ run: |
29
+ echo "Environment name: ${{ github.environment.name }}"
30
+ echo "Checking secrets availability (not showing values):"
31
+ echo "RPC_URL secret exists: ${{ secrets.RPC_URL != '' }}"
32
+ echo "Checking variables availability:"
33
+ echo "NUXT_PUBLIC_NIMIQ_NETWORK: ${{ vars.NUXT_PUBLIC_NIMIQ_NETWORK }}"
34
+
35
- name: Install
36
run: pnpm install --frozen-lockfile
37
0 commit comments