-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get CI/CD working #174
Comments
Based on the CI errors, there are several issues that need to be addressed. The main problems are:
Here are the suggested fixes:
// Before
import { Something } from '../core/types'
// After
import { Something } from '../core/types.js'
// Before
new BigNumber(value)
// After
BigNumber(value) // or
new BigNumber.BigNumber(value)
// Before
youtubedl(url, options)
// After
youtubedl.default(url, options)
{
"devDependencies": {
"@types/pdfjs-dist": "^2.10.378"
}
} Here are the specific files that need updates:
{
"compilerOptions": {
"moduleResolution": "node16",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"allowJs": true
}
}
- uses: actions/setup-node@v4
with:
node-version: "23"
cache: "pnpm" Change to: - uses: actions/setup-node@v4
with:
node-version: "22"
cache: "pnpm"
#!/bin/bash
find src -type f -name "*.ts" -exec sed -i 's/from "\(\.\.?\/.*\)"/from "\1.js"/g' {} + |
Got this working as part of getting the basic test in place |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is currently failing. See https://github.com/ai16z/eliza/actions/runs/11644235815/job/32425917328?pr=172
The text was updated successfully, but these errors were encountered: