WRR-3979: Updated storybook to 8.4 #818
Open
Travis CI / Travis CI - Branch
succeeded
Nov 11, 2024 in 9m 23s
Build Passed
The build passed.
Details
This is a normal build for the feature/storybook8.4 branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Node.js |
Operating System | Linux (Jammy) |
Node.js Version | lts/* |
Build Configuration
{
"language": "node_js",
"os": [
"linux"
],
"dist": "jammy",
"node_js": [
"lts/*"
],
"sudo": false,
"before_install": [
"curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-4.4.gpg --dearmor",
"echo \"deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-4.4.gpg ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse\" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list",
"sudo apt-get update",
"sudo apt-get install build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev"
],
"install": [
"npm config set prefer-offline false",
"npm install -g codecov",
"git clone --branch=master --depth 1 https://github.com/enactjs/cli ../cli",
"pushd ../cli",
"npm install",
"npm link",
"popd",
"git clone --branch=develop --depth 1 https://github.com/enactjs/enact ../enact",
"pushd ../enact",
"npm install",
"npm run lerna exec -- --ignore enact-sampler --concurrency 1 -- npm --no-package-lock install",
"npm run lerna exec -- --ignore enact-sampler --concurrency 1 -- npm --no-package-lock link",
"npm run interlink",
"popd",
"rm -fr node_modules/@enact",
"npm install",
"enact link"
],
"script": [
"echo -e \"\\x1b\\x5b35;1m*** Starting tests...\\x1b\\x5b0m\"",
"npm test -- --runInBand --coverage",
"codecov",
"echo -e \"\\x1b\\x5b35;1m*** Tests complete\\x1b\\x5b0m\"",
"echo -e \"\\x1b\\x5b35;1m*** Starting eslint...\\x1b\\x5b0m\"",
"npm run lint -- -- --report-unused-disable-directives --max-warnings 0 .",
"echo -e \"\\x1b\\x5b35;1m*** eslint complete\\x1b\\x5b0m\"",
"echo -e \"\\x1b\\x5b35;1m*** Starting docs validation...\\x1b\\x5b0m\"",
"npm run validate-docs",
"echo -e \"\\x1b\\x5b35;1m*** Docs validation complete\\x1b\\x5b0m\""
]
}
Loading