-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build: Test more browsers and jquery versions in pull requests
Improve the actions setup for PRs so that more issues are detected pre-merge. Changes: 1. Test on Edge in IE mode 2. Test on more jQuery versions: `git`, `3.x-git`, `3.7.1` & their slim versions as well as full versions of each `3.x` jQuery minor. This is still fewer tests than post-merge: we don't test all slim versions and Migrate dev, but this should cover the majority of cases. Closes gh-551
- Loading branch information
Showing
4 changed files
with
145 additions
and
71 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | ||
|
||
- name: Use Node.js ${{ env.NODE_VERSION }} | ||
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Cache | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.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 git --jquery git.min --jquery git.slim --jquery git.slim.min \ | ||
--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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | ||
|
||
- name: Use Node.js ${{ env.NODE_VERSION }} | ||
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Cache | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.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 git --jquery git.min --jquery git.slim --jquery git.slim.min ^ | ||
--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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | ||
|
||
- name: Use Node.js ${{ env.NODE_VERSION }} | ||
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Cache | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.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 git --jquery git.min --jquery git.slim --jquery git.slim.min \ | ||
--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 |
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
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
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