Skip to content

Commit

Permalink
Merge branch 'master' into feature/init_with_root
Browse files Browse the repository at this point in the history
  • Loading branch information
ngundotra authored Sep 13, 2024
2 parents 6a3c9cb + 992c299 commit 7fab6b9
Show file tree
Hide file tree
Showing 39 changed files with 2,055 additions and 486 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/pull-request-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,29 +40,32 @@ jobs:
js-test:
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
package:
[
account-compression,
libraries,
memo,
name-service,
single-pool,
stake-pool,
token,
token-group,
token-lending,
token-metadata,
token-swap,
]
include:
# Restrict single-pool and token-lending to supported Node.js versions.
- package: single-pool
node-version: 20.5
- package: token-lending
node-version: 18.5
runs-on: ubuntu-latest
env:
NODE_VERSION: 20.5
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
- uses: actions/cache@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions account-compression/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@
"@coral-xyz/anchor": "^0.29.0",
"@solana/eslint-config-solana": "^3.0.3",
"@types/bn.js": "^5.1.0",
"@types/jest": "^29.5.12",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.4",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^8.57.0",
"eslint-config-turbo": "^2.1.1",
"eslint-config-turbo": "^2.1.2",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-mocha": "^10.5.0",
Expand Down
2 changes: 1 addition & 1 deletion binary-option/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spl-token = { version = "6.0", path = "../../token/program", features = [
] }
arrayref = "0.3.8"
borsh = "1.5.1"
uint = "0.9"
uint = "0.10"

[lib]
crate-type = ["cdylib", "lib"]
2 changes: 1 addition & 1 deletion binary-oracle-pair/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spl-token = { version = "6.0", path = "../../token/program", features = [
"no-entrypoint",
] }
thiserror = "1.0"
uint = "0.9"
uint = "0.10"
borsh = "1.5.1"

[dev-dependencies]
Expand Down
Loading

0 comments on commit 7fab6b9

Please sign in to comment.