Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- run: corepack enable
- run: yarn install
- run: yarn compile
- run: yarn tsc
Expand All @@ -45,6 +46,7 @@ jobs:
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- run: corepack enable
- run: yarn install
- run: yarn compile
- run: yarn ci-gas-calc
Expand All @@ -62,6 +64,7 @@ jobs:
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- run: corepack enable
- run: yarn install
- run: yarn depcheck
- run: yarn lint
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
node_modules

# Yarn Berry (nodeLinker: node-modules) local-only state
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.pnp.*

#Hardhat files
cache
artifacts
Expand Down
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "accountabstraction",
"version": "0.9.0",
"description": "ERC-4337 Account Abstraction Implementation",
"packageManager": "yarn@4.18.0",
"scripts": {
"clean": "rm -rf cache artifacts typechain typechain-types",
"compile": "./scripts/hh-wrapper compile",
Expand Down
Loading