Skip to content

Commit ba3c9f8

Browse files
committed
fixup! address PR feedback
1 parent 2d4424e commit ba3c9f8

File tree

13 files changed

+5814
-8439
lines changed

13 files changed

+5814
-8439
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ charset = utf-8
1010
trim_trailing_whitespace = true
1111
insert_final_newline = true
1212

13-
[*.{json,yml}]
13+
[*.{yml}]
1414
indent_style = space
1515
indent_size = 2

.github/workflows/browserstack.yml renamed to .github/workflows/browserstack-3.x.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Browserstack
1+
name: Browserstack (Core 3.x)
22

33
on:
44
push:
@@ -79,7 +79,7 @@ jobs:
7979
-v --browserstack "${{ matrix.BROWSER }}" \
8080
--jquery-migrate dev --jquery-migrate min \
8181
--jquery 3.x-git --jquery 3.x-git.min --jquery 3.x-git.slim --jquery 3.x-git.slim.min \
82-
--jquery 3.7.0 --jquery 3.7.0.slim --jquery 3.6.4 --jquery 3.6.4.slim \
82+
--jquery 3.7.1 --jquery 3.7.1.slim --jquery 3.6.4 --jquery 3.6.4.slim \
8383
--jquery 3.5.1 --jquery 3.5.1.slim --jquery 3.4.1 --jquery 3.4.1.slim \
8484
--jquery 3.3.1 --jquery 3.3.1.slim --jquery 3.2.1 --jquery 3.2.1.slim \
8585
--jquery 3.1.1 --jquery 3.1.1.slim --jquery 3.0.0 --jquery 3.0.0.slim \

.github/workflows/browserstack-git.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Browserstack (git)
1+
name: Browserstack (Core git)
22

33
on:
44
push:

.github/workflows/node.js.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
MIGRATE_VERSION: ["min"]
19-
JQUERY_VERSION: ["3.x-git.min", "3.x-git.slim.min"]
19+
JQUERY_VERSION: ["git.min", "git.slim.min", "3.x-git.min", "3.x-git.slim.min"]
2020
include:
2121
- MIGRATE_VERSION: "esmodules"
2222
JQUERY_VERSION: "3.x-git.slim.min"
@@ -50,7 +50,7 @@ jobs:
5050
fail-fast: false
5151
matrix:
5252
MIGRATE_VERSION: ["min"]
53-
JQUERY_VERSION: ["3.x-git.min", "3.x-git.slim.min"]
53+
JQUERY_VERSION: ["git.min", "git.slim.min", "3.x-git.min", "3.x-git.slim.min"]
5454
steps:
5555
- name: Checkout
5656
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@@ -72,4 +72,7 @@ jobs:
7272
run: npm install
7373

7474
- name: Run tests
75-
run: npm run test:safari -- --jquery-migrate=${{ matrix.MIGRATE_VERSION }} --jquery=${{ matrix.JQUERY_VERSION }}
75+
run: |
76+
npm run test:safari -- \
77+
--jquery-migrate=${{ matrix.MIGRATE_VERSION }} \
78+
--jquery=${{ matrix.JQUERY_VERSION }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The following table indicates which jQuery Migrate versions can be used with whi
2525
In your web page, load this plugin *after* the script tag for jQuery, for example:
2626

2727
```html
28-
<script src="https://code.jquery.com/jquery-3.7.0.js"></script>
28+
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
2929
<script src="https://code.jquery.com/jquery-migrate-3.4.1.js"></script>
3030
```
3131

0 commit comments

Comments
 (0)