Build: Test on Safari 18 & 17 instead of "latest-1" #15
This file contains hidden or 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: Browserstack | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
environment: browserstack | |
env: | |
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} | |
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | |
NODE_VERSION: 22.x | |
name: ${{ matrix.BROWSER }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ matrix.BROWSER }} | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
BROWSER: | |
- 'IE_11' | |
- 'Safari_latest' | |
# 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' | |
- 'Edge_latest' | |
- 'Edge_latest-1' | |
- 'Firefox_latest' | |
- 'Firefox_latest-1' | |
- '__iOS_18' | |
- '__iOS_17' | |
- '__iOS_16' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Cache | |
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.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: Build jQuery Mousewheel | |
run: npm run build | |
- name: Run tests | |
run: | | |
npm run test:unit -- -v --retries 3 --hard-retries 1 \ | |
--browserstack "${{ matrix.BROWSER }}" \ | |
--run-id ${{ github.run_id }} |