Skip to content
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

WRR-14337: Fix EditableWrapper to enable hoverToScroll via touch #1793

Merged
merged 1 commit into from
Jan 2, 2025

WRR-14337: Fix EditableWrapper to enable hover to scroll in touch mode

722f32a
Select commit
Loading
Failed to load commit list.
Merged

WRR-14337: Fix EditableWrapper to enable hoverToScroll via touch #1793

WRR-14337: Fix EditableWrapper to enable hover to scroll in touch mode
722f32a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Dec 30, 2024 in 6m 27s

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 #1793 WRR-14337: Fix EditableWrapper to enable hoverToScroll via touch.
Any changes that have been made to the release/2.9.x.develop branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Node.js OS State
21877.1 lts\/\* Linux passed
21877.2 node Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Jammy)
Node.js Versions lts/*, node
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "node_js": [
    "lts/*",
    "node"
  ],
  "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=develop --depth 1 https://github.com/enactjs/cli ../cli",
    "pushd ../cli",
    "npm install",
    "npm link",
    "popd",
    "git clone --branch=release/4.9.x.develop --depth 1 https://github.com/enactjs/enact ../enact",
    "pushd ../enact",
    "npm uninstall @enact/ui-test-utils --prefix packages/i18n",
    "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 uninstall @enact/ui-test-utils",
    "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\""
  ]
}