You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note for CI**: Nx caching requires proper dependency management. Tests depend on build outputs, so ensure packages are built before running tests. The `yarn postinstall` step must run even when node_modules are cached.
83
+
84
+
If you encounter TypeScript module resolution errors in CI, you can disable Nx caching by:
85
+
```bash
86
+
# Option 1: Use --skip-nx-cache flag
87
+
yarn unit-test --skip-nx-cache
88
+
89
+
# Option 2: Set environment variable
90
+
NX_SKIP_NX_CACHE=true yarn unit-test
91
+
92
+
# Option 3: Temporarily disable in lerna.json
93
+
# Set "useNx": false
94
+
```
95
+
57
96
### Browser Compatibility
58
97
```bash
59
98
# Run browser tests
@@ -121,3 +160,7 @@ This will generate the necessary boilerplate for a new coin implementation.
121
160
## Node.js Version Support
122
161
123
162
BitGoJS supports Node.js versions >=20 and <23, with NPM >=3.10.10.
0 commit comments