Skip to content

Commit 0a5b5c5

Browse files
committed
setup .dev.vars file
1 parent de356ff commit 0a5b5c5

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/e2e.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ jobs:
5353
with:
5454
browser: true
5555

56+
- name: Set up secrets
57+
shell: bash
58+
run: |
59+
cat > .dev.vars <<EOF
60+
SECRET_WALLET="${{ secrets.TEST_CALIBNET_PRIVATE_KEY_HEX }}"
61+
SECRET_MAINNET_WALLET="${{ secrets.TEST_MAINNET_PRIVATE_KEY_HEX }}"
62+
EOF
63+
5664
- name: Run website
5765
run: |
5866
corepack enable

e2e/script.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ const PAGES = [
115115
},
116116
{
117117
path: "/faucet/calibnet",
118-
buttons: ["Send", "Transaction History", "Back to faucet list"],
118+
buttons: ["Back to faucet list", "Transaction History", "Send"],
119119
},
120120
{
121121
path: "/faucet/mainnet",
122-
buttons: ["Send", "Transaction History", "Back to faucet list"],
122+
buttons: ["Back to faucet list", "Transaction History", "Send"],
123123
},
124124
];
125125

0 commit comments

Comments
 (0)