Skip to content

Commit 3f6cfbe

Browse files
update workflow file and add abi check
1 parent dcdfc85 commit 3f6cfbe

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
name: test
1+
name: Test
22

33
on:
44
push:
5-
branches: [master]
5+
branches:
6+
- master
67
pull_request:
7-
branches: [master]
8+
branches:
9+
- master
810

911
jobs:
1012
test:
1113
runs-on: ubuntu-20.04
1214
steps:
1315
- uses: actions/checkout@v3
14-
with:
16+
with:
1517
submodules: 'recursive'
1618
- uses: actions/setup-node@v2
1719
with:
1820
node-version: 15
1921
- run: npm ci
2022
- run: npm run compile
21-
# - run: npm install --no-save ganache-cli
22-
# - run: npx ganache-cli -a 100 &
23+
- run: git diff --exit-code
2324
- run: npm run test:normal
2425
- run: npm run test:erc721

hardhat.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ module.exports = {
4444
abiExporter: {
4545
path: './abi',
4646
runOnCompile: true,
47-
clear: true,
4847
flat: true,
4948
only: [
5049
'HappyRedPacket',

0 commit comments

Comments
 (0)