Skip to content

Commit 5d9df65

Browse files
authored
fix: generate typechain but skip tests (#1213)
* try not blanket skip in CI Signed-off-by: Ihor Farion <ihor@umaproject.org> * upd Signed-off-by: Ihor Farion <ihor@umaproject.org> * bump version Signed-off-by: Ihor Farion <ihor@umaproject.org> --------- Signed-off-by: Ihor Farion <ihor@umaproject.org>
1 parent f40fe9a commit 5d9df65

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hardhat.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ subtask(TASK_COMPILE_SOLIDITY_GET_SOURCE_PATHS).setAction(async (_: any, __: any
66

77
// Filter out files that cause problems when using "paris" hardfork (currently used to compile everything when IS_TEST=true)
88
// Reference: https://github.com/NomicFoundation/hardhat/issues/2306#issuecomment-1039452928
9-
if (process.env.IS_TEST === "true" || process.env.CI === "true") {
9+
if (process.env.IS_TEST === "true") {
1010
return paths.filter((p: any) => {
1111
return (
1212
!p.includes("contracts/periphery/mintburn") &&
@@ -70,7 +70,7 @@ const tasks = [
7070
// eslint-disable-next-line node/no-missing-require
7171
tasks.forEach((task) => require(`./tasks/${task}`));
7272

73-
const isTest = process.env.IS_TEST === "true" || process.env.CI === "true";
73+
const isTest = process.env.IS_TEST === "true";
7474

7575
// To compile with zksolc, `hardhat` must be the default network and its `zksync` property must be true.
7676
// So we allow the caller to set this environment variable to toggle compiling zk contracts or not.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@across-protocol/contracts",
3-
"version": "4.1.17-beta.2",
3+
"version": "4.1.17-beta.3",
44
"author": "UMA Team",
55
"license": "AGPL-3.0-only",
66
"repository": {

0 commit comments

Comments
 (0)