We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ab862 commit 684f4daCopy full SHA for 684f4da
.github/workflows/release.yml
@@ -24,7 +24,9 @@ jobs:
24
- name: Test
25
run: yarn test:src && yarn test:contracts
26
- name: Build project
27
- run: yarn build:contracts & yarn build:src
+ run: |
28
+ yarn build:contracts
29
+ yarn build:src
30
- name: Release
31
env:
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package.json
@@ -95,7 +95,7 @@
95
"@openzeppelin/contracts": "^4.8.3"
96
},
97
"scripts": {
98
- "build:contracts": "hardhat clean && hardhat compile && tsc -p ./tsconfig.build.json",
+ "build:contracts": "hardhat compile",
99
"build:src": "rm -rf ./lib && tsc -p ./tsconfig.build.json",
100
"test:contracts": "hardhat test",
101
"test:src": "mocha -t 60000 --extension spec.ts test/src",
0 commit comments