name: Browserstack (Manual Dispatch)

on:
  workflow_dispatch:
    inputs:
      module:
        description: 'Module to test'
        required: true
        type: choice
        options:
          - 'basic'
          - 'ajax'
          - 'animation'
          - 'attributes'
          - 'callbacks'
          - 'core'
          - 'css'
          - 'data'
          - 'deferred'
          - 'deprecated'
          - 'dimensions'
          - 'effects'
          - 'event'
          - 'manipulation'
          - 'offset'
          - 'queue'
          - 'selector'
          - 'serialize'
          - 'support'
          - 'traversing'
          - 'tween'
      browser:
        description: 'Browser to test, in form of \"browser_[browserVersion | :device]_os_osVersion\"'
        required: false
        type: string
        default: 'chrome__windows_11'

permissions:
  contents: read # to fetch code (actions/checkout)

jobs:
  test:
    runs-on: ubuntu-latest
    environment: browserstack
    env:
      BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
      BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
    steps:
      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

      - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
        with:
          node-version: 20

      - name: Install dependencies
        run: npm ci

      - name: Build jQuery
        run: npm run build:all

      - name: Pretest script
        run: npm run pretest

      - name: Run tests
        env:
          BROWSER: ${{ inputs.browser }}
          MODULE: ${{ inputs.module }}
        run: npm run test:unit -- \
          -v --browserstack "$BROWSER" \
          -f "module=$MODULE"
