moved javascript packages to npm lock files
This commit is contained in:
parent
7f2f8ed854
commit
bc6921f126
|
@ -8,7 +8,7 @@ on:
|
|||
- "javascript/solana.js/src/**"
|
||||
- "javascript/solana.js/tests/**"
|
||||
- "javascript/solana.js/package.json"
|
||||
- "javascript/solana.js/yarn.lock"
|
||||
- "javascript/solana.js/package-lock.json"
|
||||
|
||||
env:
|
||||
ANCHOR_VERSION: 0.25.0
|
||||
|
@ -38,8 +38,7 @@ jobs:
|
|||
cache-dependency-path: "**/package-lock.json"
|
||||
- name: Build solana.js
|
||||
working-directory: javascript/solana.js
|
||||
run:
|
||||
yarn install --frozen-lockfile --network-timeout=1000000 && yarn build
|
||||
run: npm install && npm run build
|
||||
- name: Start Local Validator & Run Tests
|
||||
working-directory: javascript/solana.js
|
||||
run: |
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -23,8 +23,8 @@
|
|||
"noImplicitReturns": true,
|
||||
"strictPropertyInitialization": true,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../ts"]
|
||||
"@switchboard-xyz/switchboard-v2": ["../switchboard-v2"]
|
||||
}
|
||||
},
|
||||
"references": [{ "path": "../ts" }]
|
||||
"references": [{ "path": "../switchboard-v2" }]
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -27,8 +27,8 @@
|
|||
"noImplicitReturns": true,
|
||||
"strictPropertyInitialization": true,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../solana.js"]
|
||||
"@switchboard-xyz/switchboard-v2": ["../switchboard-v2"]
|
||||
}
|
||||
},
|
||||
"references": [{ "path": "../solana.js" }]
|
||||
"references": [{ "path": "../switchboard-v2" }]
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -16,7 +16,7 @@
|
|||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"types": ["mocha", "node", "long"],
|
||||
"types": ["mocha", "node"],
|
||||
"allowJs": true,
|
||||
"checkJs": false,
|
||||
// strict
|
||||
|
|
Loading…
Reference in New Issue