diff options
-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' |