Skip to content

Commit 40c043d

Browse files
committed
Fix solidity compile test workflow, add upgradeable to account compile test
1 parent 9b90959 commit 40c043d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
working-directory: packages/ui
112112
- name: Run tests
113113
if: matrix.variant == 'default'
114-
run: yarn test '**/*.test.ts' '!**/*.compile.test.ts'
114+
run: yarn test '**/*.test.ts' '**/test.ts' '!**/*.compile.test.ts'
115115
working-directory: packages/core/${{matrix.package}}
116116

117117
- name: Get list of changed files

packages/core/solidity/src/generate/account.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { AccountOptions } from '../account';
22
import { infoOptions } from '../set-info';
3+
import { upgradeableOptions } from '../set-upgradeable';
34
import { generateAlternatives } from './alternatives';
45

56
const account = {
@@ -11,7 +12,7 @@ const account = {
1112
batchedExecution: [false, true] as const,
1213
ERC7579Modules: [false, 'AccountERC7579', 'AccountERC7579Hooked'] as const,
1314
access: [false] as const,
14-
upgradeable: [false] as const,
15+
upgradeable: upgradeableOptions,
1516
info: infoOptions,
1617
};
1718

0 commit comments

Comments
 (0)