aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorTimmy Willison <timmywil@users.noreply.github.com>2024-02-26 09:42:10 -0500
committerGitHub <noreply@github.com>2024-02-26 09:42:10 -0500
commitdfc693ea25fe85e5f29da23752b0c7c8d285fbf0 (patch)
tree4ff805bcfa3eb07c77db318bca85aadcf0113589 /.github/workflows
parentbf11739f6c6926bc9bc1b5a1460505d3b7ef8b01 (diff)
downloadjquery-dfc693ea25fe85e5f29da23752b0c7c8d285fbf0.tar.gz
jquery-dfc693ea25fe85e5f29da23752b0c7c8d285fbf0.zip
Tests: migrate testing infrastructure to minimal dependencies
This is a complete rework of our testing infrastructure. The main goal is to modernize and drop deprecated or undermaintained dependencies (specifically, grunt, karma, and testswarm). We've achieved that by limiting our dependency list to ones that are unlikely to drop support any time soon. The new dependency list includes: - `qunit` (our trusty unit testing library) - `selenium-webdriver` (for spinning up local browsers) - `express` (for starting a test server and adding middleware) - express middleware includes uses of `body-parser` and `raw-body` - `yargs` (for constructing a CLI with pretty help text) - BrowserStack (for running each of our QUnit modules separately in all of our supported browsers) - `browserstack-local` (for opening a local tunnel. This is the same package still currently used in the new Browserstack SDK) - We are not using any other BrowserStack library. The newest BrowserStack SDK does not fit our needs (and isn't open source). Existing libraries, such as `node-browserstack` or `browserstack-runner`, either do not quite fit our needs, are under-maintained and out-of-date, or are not robust enough to meet all of our requirements. We instead call the [BrowserStack REST API](https://github.com/browserstack/api) directly. ## BrowserStack Runner - automatically retries individual modules in case of test failure(s) - automatically attempts to re-establish broken tunnels - automatically refreshes the page in case a test run has stalled - runs all browsers concurrently and uses as many sessions as are available under the BrowserStack plan. It will wait for available sessions if there are none. - supports filtering the available list of browsers by browser name, browser version, device, OS, and OS version (see `npm run test:unit -- --list-browsers` for more info). It will retrieve the latest matching browser available if any of those parameters are not specified. - cleans up after itself (closes the local tunnel, stops the test server, etc.) - Requires `BROWSERSTACK_USERNAME` and `BROWSERSTACK_ACCESS_KEY` environment variables. ## Selenium Runner - supports running any local browser as long as the driver is installed, including support for headless mode in Chrome, FF, and Edge - supports running `basic` tests on the latest [jsdom](https://github.com/jsdom/jsdom#readme), which can be seen in action in this PR (see `test:browserless`) - Node tests will run as before in PRs and all non-dependabot branches, but now includes tests on real Safari in a GH actions macos image instead of playwright-webkit. - can run multiple browsers and multiple modules concurrently Other notes: - Stale dependencies have been removed and all remaining dependencies have been upgraded with a few exceptions: - `sinon`: stopped supporting IE in version 10. But, `sinon` has been updated to 9.x. - `husky`: latest does not support Node 10 and runs on `npm install`. Needed for now until git builds are migrated to GitHub Actions. - `rollup`: latest does not support Node 10. Needed for now until git builds are migrated to GitHub Actions. - BrowserStack tests are set to run on each `main` branch commit - `debug` mode leaves Selenium browsers open whether they pass or fail and leaves browsers with test failures open on BrowserStack. The latter is to avoid leaving open too many sessions. - This PR includes a workflow to dispatch BrowserStack runs on-demand - The Node version used for most workflow tests has been upgraded to 20.x - updated supportjQuery to 3.7.1 Run `npm run test:unit -- --help` for CLI documentation Close gh-5418
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/browserstack-dispatch.yml62
-rw-r--r--.github/workflows/browserstack.yml64
-rw-r--r--.github/workflows/node.js.yml103
3 files changed, 189 insertions, 40 deletions
diff --git a/.github/workflows/browserstack-dispatch.yml b/.github/workflows/browserstack-dispatch.yml
new file mode 100644
index 000000000..7c551f2d3
--- /dev/null
+++ b/.github/workflows/browserstack-dispatch.yml
@@ -0,0 +1,62 @@
+name: Browserstack (Manual Dispatch)
+
+on:
+ workflow_dispatch:
+ inputs:
+ module:
+ description: 'Module to test'
+ required: true
+ type: choice
+ options:
+ - 'basic'
+ - 'ajax'
+ - 'animation'
+ - 'attributes'
+ - 'callbacks'
+ - 'core'
+ - 'css'
+ - 'data'
+ - 'deferred'
+ - 'deprecated'
+ - 'dimensions'
+ - 'effects'
+ - 'event'
+ - 'manipulation'
+ - 'offset'
+ - 'queue'
+ - 'selector'
+ - 'serialize'
+ - 'support'
+ - 'traversing'
+ - 'tween'
+ browser:
+ description: 'Browser to test, in form of \"browser_[browserVersion | :device]_os_osVersion\"'
+ required: false
+ type: string
+ default: 'chrome__windows_11'
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ environment: browserstack
+ env:
+ BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
+ BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
+ steps:
+ - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
+
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
+ with:
+ node-version: 20
+
+ - name: Install dependencies
+ run: npm ci
+
+ - name: Build jQuery
+ run: npm run build:all
+
+ - name: Pretest script
+ run: npm run pretest
+
+ - name: Run tests
+ run: npm run test:unit -- -v --browserstack ${{ inputs.browser }} -m ${{ inputs.module }}
diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml
new file mode 100644
index 000000000..7350ca36d
--- /dev/null
+++ b/.github/workflows/browserstack.yml
@@ -0,0 +1,64 @@
+name: Browserstack
+
+on:
+ push:
+ branches:
+ - main
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ environment: browserstack
+ env:
+ BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
+ BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
+ NODE_VERSION: 20.x
+ name: ${{ matrix.BROWSER }}
+ concurrency:
+ group: ${{ github.workflow }} ${{ matrix.BROWSER }}
+ strategy:
+ fail-fast: false
+ matrix:
+ BROWSER:
+ - 'IE_11'
+ - 'Safari_17'
+ - 'Safari_16'
+ - 'Chrome_120'
+ - 'Chrome_119'
+ - 'Edge_120'
+ - 'Edge_119'
+ - 'Firefox_121'
+ - 'Firefox_120'
+ - 'Firefox_115'
+ - '__iOS_17'
+ - '__iOS_16'
+ - '__iOS_15'
+ - 'Opera_106'
+ steps:
+ - name: Checkout
+ uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
+
+ - name: Use Node.js ${{ env.NODE_VERSION }}
+ uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
+ with:
+ node-version: ${{ env.NODE_VERSION }}
+
+ - name: Cache
+ uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-
+
+ - name: Install dependencies
+ run: npm install
+
+ - name: Build jQuery
+ run: npm run build:all
+
+ - name: Pretest script
+ run: npm run pretest
+
+ - name: Run tests
+ run: npm run test:unit -- -v --browserstack "${{ matrix.BROWSER }}" --retries 3
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
index 443bd2b20..902f8cc60 100644
--- a/.github/workflows/node.js.yml
+++ b/.github/workflows/node.js.yml
@@ -1,4 +1,4 @@
-name: CI
+name: Node
on:
pull_request:
@@ -9,44 +9,49 @@ permissions:
contents: read # to fetch code (actions/checkout)
jobs:
- build:
+ build-and-test:
runs-on: ubuntu-latest
+ name: ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }})
strategy:
fail-fast: false
matrix:
- # Node.js 10 is required by jQuery infra
- # Do not remove 16.x until jsdom tests are re-enabled on newer Node.js versions.
- NODE_VERSION: [10.x, 16.x, 18.x, 20.x]
+ NAME: ["Node"]
+ NODE_VERSION: [18.x, 20.x]
NPM_SCRIPT: ["test:browserless"]
include:
- - NAME: "Browser tests: full build, Chrome, Firefox & WebKit"
- NODE_VERSION: "18.x"
+ - NAME: "Node"
+ NODE_VERSION: "20.x"
+ NPM_SCRIPT: "lint"
+ - NAME: "Chrome/Firefox"
+ NODE_VERSION: "20.x"
NPM_SCRIPT: "test:browser"
- BROWSERS: "ChromeHeadless,FirefoxHeadless,WebkitHeadless"
- - NAME: "Browser tests: slim build, Chrome"
- NODE_VERSION: "18.x"
+ - NAME: "Chrome"
+ NODE_VERSION: "20.x"
NPM_SCRIPT: "test:slim"
- BROWSERS: "ChromeHeadless"
- - NAME: "Browser tests: no-deprecated build, Chrome"
- NODE_VERSION: "18.x"
+ - NAME: "Chrome"
+ NODE_VERSION: "20.x"
NPM_SCRIPT: "test:no-deprecated"
- BROWSERS: "ChromeHeadless"
- - NAME: "Browser tests: selector-native build, Chrome"
- NODE_VERSION: "18.x"
+ - NAME: "Chrome"
+ NODE_VERSION: "20.x"
NPM_SCRIPT: "test:selector-native"
- BROWSERS: "ChromeHeadless"
- - NAME: "Browser tests: ES modules build, Chrome"
- NODE_VERSION: "18.x"
- NPM_SCRIPT: "test:esmodules"
- BROWSERS: "ChromeHeadless"
- - NAME: "Browser tests: full build, Firefox ESR"
- NODE_VERSION: "18.x"
- NPM_SCRIPT: "test:browser"
- BROWSERS: "FirefoxHeadless"
+ - NAME: "Chrome"
+ NODE_VERSION: "20.x"
+ NPM_SCRIPT: "test:esm"
+ - NAME: "Firefox ESR"
+ NODE_VERSION: "20.x"
+ NPM_SCRIPT: "test:firefox"
+ - NAME: "Node 10 Build"
+ NODE_VERSION: "10.x"
+ NPM_SCRIPT: "build:main"
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
+ - name: Use Node.js ${{ matrix.NODE_VERSION }}
+ uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
+ with:
+ node-version: ${{ matrix.NODE_VERSION }}
+
- name: Cache
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
with:
@@ -55,31 +60,49 @@ jobs:
restore-keys: |
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-npm-lock-
- - name: Use Node.js ${{ matrix.NODE_VERSION }}
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
- with:
- node-version: ${{ matrix.NODE_VERSION }}
-
- name: Install firefox ESR
run: |
- export FIREFOX_SOURCE_URL='https://download.mozilla.org/?product=firefox-esr-latest&lang=en-US&os=linux64'
+ export FIREFOX_SOURCE_URL='https://download.mozilla.org/?product=firefox-esr-latest-ssl&lang=en-US&os=linux64'
wget --no-verbose $FIREFOX_SOURCE_URL -O - | tar -jx -C ${HOME}
if: contains(matrix.NAME, 'Firefox ESR')
- name: Install dependencies
run: npm install
- - name: Install Playwright dependencies
- run: npx playwright-webkit install-deps
- if: matrix.NPM_SCRIPT == 'test:browser' && contains(matrix.BROWSERS, 'WebkitHeadless')
-
- - name: Lint code
- run: npm run build:all && npm run lint
- if: matrix.NODE_VERSION == '18.x'
+ - name: Build All for Linting
+ run: npm run build:all
+ if: contains(matrix.NPM_SCRIPT, 'lint')
- name: Run tests
- env:
- BROWSERS: ${{ matrix.BROWSERS }}
run: |
export PATH=${HOME}/firefox:$PATH
+ export FIREFOX_BIN=${HOME}/firefox/firefox
npm run ${{ matrix.NPM_SCRIPT }}
+
+ safari:
+ runs-on: macos-latest
+ env:
+ NODE_VERSION: 20.x
+ name: test:safari - Safari
+ steps:
+ - name: Checkout
+ uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
+
+ - name: Use Node.js ${{ env.NODE_VERSION }}
+ uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
+ with:
+ node-version: ${{ env.NODE_VERSION }}
+
+ - name: Cache
+ uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-
+
+ - name: Install dependencies
+ run: npm install
+
+ - name: Run tests
+ run: npm run test:safari