mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-11 12:30:25 +08:00
Merge pull request #870 from c-bata/fix-package-lock.json
Fix package-lock.json to build on Linux environment
This commit is contained in:
@@ -50,6 +50,33 @@ jobs:
|
||||
npm install
|
||||
npm run type-check
|
||||
|
||||
check-package-lock-json:
|
||||
name: Check package-lock.json
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@master
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '20'
|
||||
|
||||
- working-directory: optuna_dashboard
|
||||
run: npm install
|
||||
- working-directory: tslib/types
|
||||
run: npm install
|
||||
- working-directory: tslib/storage
|
||||
run: npm install
|
||||
- working-directory: tslib/react
|
||||
run: npm install
|
||||
- working-directory: standalone_app
|
||||
run: npm install
|
||||
- working-directory: vscode
|
||||
run: npm install
|
||||
- run: git diff --exit-code
|
||||
|
||||
build:
|
||||
name: JS build check
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Generated
+935
-502
File diff suppressed because it is too large
Load Diff
Generated
+6
-2
@@ -90,14 +90,18 @@
|
||||
"@sqlite.org/sqlite-wasm": "^3.45.1-build1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@optuna/types": "../types/"
|
||||
"@optuna/types": "../types/",
|
||||
"typescript": "^5.4.5"
|
||||
}
|
||||
},
|
||||
"../tslib/types": {
|
||||
"name": "@optuna/types",
|
||||
"version": "0.0.1",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"typescript": "^5.4.5"
|
||||
}
|
||||
},
|
||||
"node_modules/@ampproject/remapping": {
|
||||
"version": "2.3.0",
|
||||
|
||||
Reference in New Issue
Block a user