mirror of
https://github.com/jquery/jquery.git
synced 2026-01-14 09:38:01 -05:00
Our setup is pretty standard, so manual configuration of `actions/cache` is an overkill. Relying on built-in `actions/node` caching will also resolve differences between caching configurations for macOS/Linux vs. Windows. Also, switch from `npm install` to `npm ci` in CI. Closes gh-5702 Ref jquery/jquery-migrate#597 Ref gh-5703
68 lines
1.9 KiB
YAML
68 lines
1.9 KiB
YAML
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@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 ci
|
|
|
|
- name: Build jQuery
|
|
run: npm run build:all
|
|
|
|
- name: Pretest script
|
|
run: npm run pretest
|
|
|
|
- name: Run tests
|
|
run: |
|
|
npm run test:unit -- -v -c jtr-isolate.yml \
|
|
--browserstack "${{ matrix.BROWSER }}" \
|
|
--run-id ${{ github.run_id }}
|