Skip to content

Build: Update browsers tested in BrowserStack #86

Build: Update browsers tested in BrowserStack

Build: Update browsers tested in BrowserStack #86

Workflow file for this run

name: Browserstack
on:
push:
branches:
- main
# Once a week every Tuesday
schedule:
- cron: "42 1 * * 2"
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: ${{ matrix.BROWSER }} - ${{ github.sha }}
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.
# See https://github.com/jquery/jquery-test-runner/issues/17
- 'Safari_18'
- 'Chrome_latest'
- 'Chrome_latest-1'
- 'Opera_latest'
- 'Edge_latest'
- 'Edge_latest-1'
- 'Firefox_latest'
- 'Firefox_latest-1'
- '__iOS_26'
- '__iOS_18'
- '__iOS_17'
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm install
- name: Build jQuery
run: npm run build:all
- name: Pretest script
run: npm run pretest
- name: Test
run: |
npm run test:unit -- -v -c jtr-ci.yml \
--browserstack "${{ matrix.BROWSER }}" \
--run-id ${{ github.run_id }} \