Skip to content

Commit

Permalink
filter
Browse files Browse the repository at this point in the history
  • Loading branch information
TateB committed Aug 13, 2024
1 parent 07d058a commit 0550481
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,5 @@ jobs:

- run: bun install --frozen-lockfile

- run: cd ./contracts

- name: Run tests
run: bun run test:hardhat
run: bun --filter contracts test:hardhat
4 changes: 2 additions & 2 deletions contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "contracts",
"type": "module",
"scripts": {
"compile:hardhat": "NODE_OPTIONS=\"--experimental-loader ts-node/esm/transpile-only\" hardhat compile",
"test:hardhat": "NODE_OPTIONS=\"--experimental-loader ts-node/esm/transpile-only\" hardhat test",
"compile:hardhat": "NODE_OPTIONS='--experimental-loader ts-node/esm/transpile-only' hardhat compile",
"test:hardhat": "NODE_OPTIONS='--experimental-loader ts-node/esm/transpile-only' hardhat test",
"test:forge": "echo \"Skipping forge test for now since there are no tests...\"",
"test": "bun run test:forge && bun run test:hardhat"
},
Expand Down

0 comments on commit 0550481

Please sign in to comment.