Skip to content

Commit 18fffa4

Browse files
authored
Merge pull request #104 from lighthouse-web3/v0.2.8
V0.2.8
2 parents f150f27 + 897439f commit 18fffa4

29 files changed

+9136
-3432
lines changed

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
TEST_PUBLIC_KEY=public_key
2+
TEST_PRIVATE_KEY=private_key
3+
TEST_API_KEY=api_key

.github/workflows/node.js.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ jobs:
2727
- name: Install 🔧
2828
run: npm install
2929

30-
# - name: Lint 🧐
31-
# run: npm run lint
32-
3330
- name: Test 🚨
3431
run: npm test
32+
env:
33+
TEST_API_KEY: ${{ secrets.TEST_API_KEY }}
34+
TEST_PRIVATE_KEY: ${{ secrets.TEST_PRIVATE_KEY }}
35+
TEST_PUBLIC_KEY: ${{ secrets.TEST_PUBLIC_KEY }}

.github/workflows/npm-publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ jobs:
1818
- run: npm ci
1919
- run: npm run build
2020
- run: npm test
21+
env:
22+
TEST_API_KEY: ${{ secrets.TEST_API_KEY }}
23+
TEST_PRIVATE_KEY: ${{ secrets.TEST_PRIVATE_KEY }}
24+
TEST_PUBLIC_KEY: ${{ secrets.TEST_PUBLIC_KEY }}
2125

2226
publish-npm:
2327
needs: build

0 commit comments

Comments
 (0)