Skip to content

Commit 238fa45

Browse files
authored
Merge pull request #206 from zeriontech/fix-ci
Fix ci
2 parents 5af8bed + b67a72f commit 238fa45

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+21127
-25987
lines changed

.env.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
INFURA_API_KEY = "infura_api_key"
21
ETHERSCAN_API_KEY = "etherscan_api_key"
2+
WALLET_PRIVATE_KEY = "wallet_private_key"
33
REPORT_GAS=true

.eslintignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: build
2222
run: npm run compile
2323
- name: upload artifacts
24-
uses: actions/upload-artifact@v1
24+
uses: actions/upload-artifact@v4
2525
with:
2626
name: artifacts
2727
path: artifacts/contracts

.github/workflows/coverage.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,8 @@ jobs:
1818
ssh-private-key: ${{ secrets.PRIVATE_SSH }}
1919
- name: install
2020
run: npm ci
21-
- name: test+coverage
22-
run: npm run coverage
23-
env:
24-
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
25-
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
2621
- name: upload artifacts
27-
uses: actions/upload-artifact@v1
22+
uses: actions/upload-artifact@v4
2823
if: always()
2924
with:
3025
name: coverage

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Automated Contract Deployment
1+
name: deploy
22

33
on:
44
workflow_dispatch:

.github/workflows/techdocs.yaml

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,3 @@ jobs:
1818
ssh-private-key: ${{ secrets.PRIVATE_SSH }}
1919
- name: install
2020
run: npm ci
21-
- name: test
22-
run: npm run test
23-
env:
24-
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
25-
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
2+
typechain-types/
23
.idea/
34
.vscode/
45
build/

.solcover.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
balance: '0x56BC75E2D63100000',
1414
},
1515
],
16-
fork: `https://mainnet.infura.io/v3/${process.env.INFURA_API_KEY}`,
16+
fork: `https://rpc.zerion.io/v1/ethereum`,
1717
gasLimit: 0x1fffffffffffff,
1818
},
1919
mocha: {

0 commit comments

Comments
 (0)