Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
tests:
name: Tests
uses: ./.github/workflows/tests.yml
secrets:
ANKR_API_KEY: ${{ secrets.ANKR_API_KEY }}

linters:
name: Linters
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
on:
workflow_call:
secrets:
ANKR_API_KEY:
required: true

env:
NODE_ENV: ci
Expand Down Expand Up @@ -29,6 +32,8 @@ jobs:
cache: 'npm'
- run: npm ci
- run: npm run test
env:
ANKR_API_KEY: ${{ secrets.ANKR_API_KEY }}
Comment thread
nghaninn marked this conversation as resolved.

test-build:
name: Test Build
Expand Down
35 changes: 35 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-promise": "^7.2.1",
"eth-testing": "^1.14.0",
"execa": "^9.5.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
Expand Down
Loading