Core: Remove support for jQuery 4.x #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Browser Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
NODE_VERSION: 20.x | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: ${{ matrix.BROWSER }} (${{ matrix.MIGRATE_VERSION }} Migrate) | |
strategy: | |
fail-fast: false | |
matrix: | |
BROWSER: ["chrome", "firefox"] | |
MIGRATE_VERSION: ["min"] | |
include: | |
- NAME: "Node" | |
BROWSER: "chrome" | |
MIGRATE_VERSION: "esmodules" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Cache | |
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
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 pretest | |
npm run test:unit -- -b ${{ matrix.BROWSER }} -h \ | |
--jquery-migrate ${{ matrix.MIGRATE_VERSION }} \ | |
--jquery 3.x-git --jquery 3.x-git.min --jquery 3.x-git.slim --jquery 3.x-git.slim.min \ | |
--jquery 3.7.1 --jquery 3.7.1.slim \ | |
--jquery 3.6.4 --jquery 3.5.1 --jquery 3.4.1 \ | |
--jquery 3.3.1 --jquery 3.2.1 --jquery 3.1.1 --jquery 3.0.0 \ | |
--retries 1 | |
ie: | |
runs-on: windows-latest | |
name: Edge in IE mode (min Migrate) | |
env: | |
MIGRATE_VERSION: "min" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Cache | |
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
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 | |
shell: cmd | |
run: | | |
npm run test:ie -- ^ | |
--jquery-migrate ${{ env.MIGRATE_VERSION }} ^ | |
--jquery 3.x-git --jquery 3.x-git.min --jquery 3.x-git.slim --jquery 3.x-git.slim.min ^ | |
--jquery 3.7.1 --jquery 3.7.1.slim ^ | |
--jquery 3.6.4 --jquery 3.5.1 --jquery 3.4.1 ^ | |
--jquery 3.3.1 --jquery 3.2.1 --jquery 3.1.1 --jquery 3.0.0 ^ | |
--retries 1 | |
safari: | |
runs-on: macos-latest | |
name: Safari (min Migrate) | |
env: | |
MIGRATE_VERSION: "min" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Cache | |
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
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 -- \ | |
--jquery-migrate ${{ env.MIGRATE_VERSION }} \ | |
--jquery 3.x-git --jquery 3.x-git.min --jquery 3.x-git.slim --jquery 3.x-git.slim.min \ | |
--jquery 3.7.1 --jquery 3.7.1.slim \ | |
--jquery 3.6.4 --jquery 3.5.1 --jquery 3.4.1 \ | |
--jquery 3.3.1 --jquery 3.2.1 --jquery 3.1.1 --jquery 3.0.0 \ | |
--retries 1 |