File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
fetch-data :
10
10
runs-on : ubuntu-latest
11
+ env :
12
+ INFURA_API_KEY : ${{ secrets.INFURA_API_KEY }}
13
+ ALCHEMY_API_KEY : ${{ secrets.ALCHEMY_API_KEY }}
11
14
steps :
12
15
- uses : actions/checkout@v4
13
16
- uses : oven-sh/setup-bun@v1
Original file line number Diff line number Diff line change @@ -8,6 +8,19 @@ if [ -f "$repoRoot/.env" ]; then
8
8
source " $repoRoot /.env"
9
9
fi
10
10
11
+ if [ -n " ${INFURA_API_KEY:- } " ]; then
12
+ echo " INFURA_API_KEY exists"
13
+ else
14
+ echo " INFURA_API_KEY does not exist"
15
+ fi
16
+
17
+ # Log "alchemy exists"
18
+ if [ -n " ${ALCHEMY_API_KEY:- } " ]; then
19
+ echo " ALCHEMY_API_KEY exists"
20
+ else
21
+ echo " ALCHEMY_API_KEY does not exist"
22
+ fi
23
+
11
24
# Function to handle final preparation steps.
12
25
final_preparation () {
13
26
local exitStatus=$?
You can’t perform that action at this time.
0 commit comments