Skip to content
This repository was archived by the owner on May 16, 2024. It is now read-only.

Commit 591b6a3

Browse files
cajamesmatthewmuscatNathan-Ballantyne
authored
update test matrix to use node 18 (#298)
* feat: allow for node 18 * bump CI * revert * fix: don't test with node 18 yet * update test matrix to use node 18 * remove dependancy on itself * fix: examples typecheck --------- Co-authored-by: Matthew Muscat <[email protected]> Co-authored-by: Nathan Ballantyne <[email protected]>
1 parent 8155f86 commit 591b6a3

File tree

4 files changed

+7
-20
lines changed

4 files changed

+7
-20
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node: ['14', '16']
17+
node: ['14', '16', '18']
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v2

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989
"@ethersproject/abi": "^5.0.0",
9090
"@ethersproject/bytes": "^5.0.0",
9191
"@ethersproject/providers": "^5.0.0",
92-
"@imtbl/core-sdk": "^1.0.0",
9392
"axios": "^0.26.1",
9493
"bn.js": "^5.2.0",
9594
"elliptic": "^6.5.4",
@@ -98,4 +97,4 @@
9897
"ethers": "^5.6.9",
9998
"hash.js": "^1.1.7"
10099
}
101-
}
100+
}

tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"compilerOptions": {
33
"outDir": "./dist",
4+
"baseUrl": ".",
5+
"paths": {
6+
"@imtbl/core-sdk": ["src"]
7+
},
48
"rootDirs": ["src"],
59
"target": "esnext",
610
"module": "esnext",
@@ -15,7 +19,7 @@
1519
"declarationDir": ".",
1620
"declaration": true,
1721
"resolveJsonModule": true,
18-
"skipLibCheck": true,
22+
"skipLibCheck": true
1923
},
2024
"include": ["src", "examples"],
2125
"exclude": ["node_modules", "dist"],

yarn.lock

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1361,22 +1361,6 @@
13611361
resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c"
13621362
integrity sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==
13631363

1364-
"@imtbl/core-sdk@^1.0.0":
1365-
version "1.0.0"
1366-
resolved "https://registry.yarnpkg.com/@imtbl/core-sdk/-/core-sdk-1.0.0.tgz#c3bf5d8375bca09f4053ddf8c02e6de1c01b1dfc"
1367-
integrity sha512-4EFpF+iGIu0tN/H7bKVsxMbReMllplymZcqbqnub9wbYSs2Ow3NCPLgKaVirgEP+fyZuGw7Il2fJm78bUYHzkw==
1368-
dependencies:
1369-
"@ethersproject/abi" "^5.0.0"
1370-
"@ethersproject/bytes" "^5.0.0"
1371-
"@ethersproject/providers" "^5.0.0"
1372-
axios "^0.26.1"
1373-
bn.js "^5.2.0"
1374-
elliptic "^6.5.4"
1375-
enc-utils "^3.0.0"
1376-
ethereumjs-wallet "^1.0.2"
1377-
ethers "^5.6.9"
1378-
hash.js "^1.1.7"
1379-
13801364
"@istanbuljs/load-nyc-config@^1.0.0":
13811365
version "1.1.0"
13821366
resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"

0 commit comments

Comments
 (0)