Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Oct 12, 2023
1 parent 86418a8 commit 660eea3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/contracts-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'contracts'

env:
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
working-directory: contracts
working-directory: .

on:
workflow_dispatch:
Expand All @@ -29,7 +29,13 @@ jobs:

- name: 'Install the dependencies'
run: 'yarn install'
working-directory: .

- name: 'Install the dependencies'
run: 'yarn install'

- name: 'Install the dependencies'
run: 'yarn install'
working-directory: contracts

- name: 'Lint the code'
run: 'yarn lint'
Expand Down
4 changes: 2 additions & 2 deletions contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"ethers": "^5.7.2",
"hardhat": "^2.13.1",
"hardhat-deploy": "^0.11.26",
Expand All @@ -41,8 +42,7 @@
"@ensdomains/ens-contracts": "0.0.20",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-upgrades": "^1.27.0",
"cross-env": "^7.0.3"
"@openzeppelin/hardhat-upgrades": "^1.27.0"
},
"files": [
"/src"
Expand Down

0 comments on commit 660eea3

Please sign in to comment.