Skip to content

Commit 289a129

Browse files
author
remotenwsshell
committed
fix:ci bug
1 parent 65dbcaf commit 289a129

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
run: npx hardhat compile
3939

4040
- name: Run unit tests (Hardhat Network)
41-
run: npx hardhat test test/unit/**/*.test.ts --network hardhat
41+
run: npx hardhat test test/unit --network hardhat
4242
continue-on-error: false
4343

4444
- name: Run integration tests (Hardhat Network)
45-
run: npx hardhat test test/integration/**/*.test.ts --network hardhat
45+
run: npx hardhat test test/integration --network hardhat
4646
continue-on-error: false
4747

4848
- name: Upload test artifacts
@@ -81,13 +81,13 @@ jobs:
8181
run: bash scripts/setup-node.sh
8282

8383
- name: Run unit tests (anvil-polkadot)
84-
run: npx hardhat test test/unit/**/*.test.ts --network hardhat
84+
run: npx hardhat test test/unit --network hardhat
8585
env:
8686
POLKADOT_NODE: "true"
8787
continue-on-error: true
8888

8989
- name: Run integration tests (anvil-polkadot)
90-
run: npx hardhat test test/integration/**/*.test.ts --network hardhat
90+
run: npx hardhat test test/integration --network hardhat
9191
env:
9292
POLKADOT_NODE: "true"
9393
continue-on-error: true

0 commit comments

Comments
 (0)