Skip to content

Commit

Permalink
ci: attempt to fix windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
elbywan authored and valpinkman committed May 17, 2022
1 parent 72df2ba commit ffe97cd
Show file tree
Hide file tree
Showing 6 changed files with 242 additions and 23 deletions.
2 changes: 1 addition & 1 deletion libs/ledger-live-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"updateAppSupportsQuitApp": "node scripts/updateAppSupportsQuitApp.js",
"prettier": "prettier --write 'src/**/*.?s' 'cli/src/**/*.?s'",
"lint": "eslint src",
"jest": "rimraf libcoredb && mkdir libcoredb && ./node_modules/cross-env/src/bin/cross-env.js TZ=America/New_York jest",
"jest": "rimraf libcoredb && mkdir libcoredb && x-run node_modules/cross-env/src/bin/cross-env.js TZ=America/New_York jest",
"test": "pnpm ci-test-common",
"ci-lint": "pnpm lint",
"ci-test-common": "env-cmd -f ./.ci.env pnpm jest -- --ci --updateSnapshot && git diff --exit-code src",
Expand Down
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,24 @@
"private": true,
"packageManager": "[email protected]",
"devDependencies": {
"turbo": "^1.1.0"
"turbo": "^1.1.0",
"x-run": "workspace:*"
},
"scripts": {
"clean": "git clean -fdX",
"build": "./node_modules/turbo/bin/turbo run build --ignore='apps/*' --no-deps",
"build": "pnpm run:turbo -- run build --ignore='apps/*' --no-deps",
"build:libs": "pnpm -r build --filter='./libs'",
"test": "./node_modules/turbo/bin/turbo run build test --include-dependencies --no-deps",
"lld:dev": "./node_modules/turbo/bin/turbo run start --scope=live-desktop --include-dependencies --no-deps --no-cache",
"llm:dev": "./node_modules/turbo/bin/turbo run start --scope=live-mobile --include-dependencies --no-deps --no-cache",
"test": "pnpm run:turbo -- run build test --include-dependencies --no-deps",
"lld:dev": "pnpm run:turbo -- run start --scope=live-desktop --include-dependencies --no-deps --no-cache",
"llm:dev": "pnpm run:turbo -- run start --scope=live-mobile --include-dependencies --no-deps --no-cache",
"desktop": "pnpm --filter live-desktop",
"mobile": "pnpm --filter live-mobile",
"common": "pnpm --filter live-common",
"ui:react": "pnpm --filter react-ui",
"ui:native": "pnpm --filter native-ui",
"ui:icons": "pnpm --filter icons-ui",
"ui:shared": "pnpm --filter shared-ui"
"ui:shared": "pnpm --filter shared-ui",
"run:turbo": "x-run node_modules/turbo/bin/turbo"
},
"pnpm": {
"overrides": {
Expand Down
Loading

0 comments on commit ffe97cd

Please sign in to comment.