diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2025-08-06 11:18:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-06 11:18:00 +0200 |
commit | 958369f08815618b02e485bc29fac81cf4f2e1f6 (patch) | |
tree | c06464c283ea8f4a76e4aef72e82b5fe2dbbbfef | |
parent | 19621e99443d1a399a627ee535314d65398d1b89 (diff) | |
download | jquery-958369f08815618b02e485bc29fac81cf4f2e1f6.tar.gz jquery-958369f08815618b02e485bc29fac81cf4f2e1f6.zip |
Build: Test on Safari 18 & 17 instead of "latest-1"
JTR doesn't take into account the jump from Safari 18 to 26,
so we need to specify versions explicitly. Also, while BrowserStack
already added macOS Tahoe with Safari 26, it's not a stable release
yet, so we need to test on Safari 17 as well.
Closes gh-5687
Ref jquery/jquery-test-runner#17
-rw-r--r-- | .github/workflows/browserstack.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index 3357ae92d..47ff7634b 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -23,7 +23,13 @@ jobs: BROWSER: - 'IE_11' - 'Safari_latest' - - 'Safari_latest-1' + # JTR doesn't take into account the jump from Safari 18 to 26, + # so we need to specify versions explicitly. Also, while BrowserStack + # already added macOS Tahoe with Safari 26, it's not a stable release + # yet, so we need to test on Safari 17 as well. + # See https://github.com/jquery/jquery-test-runner/issues/17 + - 'Safari_18' + - 'Safari_17' - 'Chrome_latest' - 'Chrome_latest-1' - 'Opera_latest' |