NODEJS-680: Update and Automate TypeScript Support #439
Travis CI / Travis CI - Pull Request
succeeded
May 14, 2025 in 11m 4s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #439 NODEJS-680: Update and Automate TypeScript Support.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has seven jobs, running in parallel.
Stage 1: tests
This stage passed.
| Job | Node.js | OS | State |
|---|---|---|---|
| 18 | Linux | passed | |
| 18 | Linux | passed | |
| 20 | Linux | passed | |
| 20 | Linux | passed | |
| 18 | Linux | passed | |
| 16 | Linux | passed | |
| 18 | Linux | passed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Node.js |
| Operating System | Linux (Jammy) |
Build Configuration
{
"language": "node_js",
"os": [
"linux"
],
"dist": "jammy",
"sudo": false,
"cache": {
"directories": [
"node_modules"
]
},
"jobs": {
"include": [
{
"stage": "tests",
"name": "Run eslint",
"script": [
"npm run eslint;"
],
"node_js": "18"
},
{
"name": "TypeScript 4.9 generation and compilation tests",
"node_js": "18",
"script": [
"npm install -g typescript@4.9;",
"pushd test/other/typescript/",
"npm install",
"tsc -p ."
]
},
{
"name": "Unit tests - Node.js 20",
"node_js": "20",
"script": [
"npm test"
]
},
{
"name": "Unit tests w/ latest dependencies - Node.js 20",
"node_js": "20",
"script": [
"rm package-lock.json",
"rm -rf node_modules",
"npm install",
"npm test"
]
},
{
"name": "Unit tests - Node.js 18",
"node_js": "18",
"script": [
"npm test"
]
},
{
"name": "Unit tests - Node.js 16",
"node_js": "16",
"script": [
"npm test"
]
},
{
"name": "TypeScript (latest) generation and compilation tests",
"node_js": "18",
"script": [
"npm install -g typescript;",
"pushd test/other/typescript/",
"npm install",
"tsc -p ."
]
}
]
}
}
Loading