Skip to content
Draft
Show file tree
Hide file tree
Changes from 4 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
9 changes: 8 additions & 1 deletion .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@ runs:
steps:
- uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable
shell: bash

- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org
cache: yarn

- run: yarn install --frozen-lockfile --ignore-scripts
- name: Disable Yarn scripts on CI
run: yarn config set enableScripts false
shell: bash
- run: yarn install --frozen-lockfile
shell: bash
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,12 @@ stats.*
/blob-report/
/playwright/.cache/
.cache-synpress


.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
enableGlobalCache: false

nodeLinker: node-modules
17 changes: 6 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,15 +177,7 @@
}
},
"resolutions": {
"babel-loader": "8.1.0",
"**/eccrypto/secp256k1": "3.8.1",
"**/eth-crypto/secp256k1": "5.0.1",
"**/libp2p-crypto/secp256k1": "4.0.4",
"**/ethereum-cryptography/secp256k1": "4.0.4",
"**/@vercel/node/ts-node": "10.9.2",
"**/@vercel/node/typescript": "5.7.3",
"**/@vercel/node/path-to-regexp": "6.3.0",
"**/@vercel/routing-utils/path-to-regexp": "6.3.0"
"babel-loader": "8.1.0"
},
"overrides": {
"[email protected]": "3.8.1",
Expand All @@ -198,7 +190,9 @@
},
"@vercel/routing-utils": {
"path-to-regexp": "6.3.0"
}
},
"[email protected]": "3.0.11",
"[email protected]": "3.0.11"
},
"eslintConfig": {
"overrides": [
Expand All @@ -213,5 +207,6 @@
]
},
"readme": "ERROR: No README data found!",
"_id": "[email protected]"
"_id": "[email protected]",
"packageManager": "[email protected]"
}
Loading
Loading