diff options
Diffstat (limited to '.github/workflows/browserstack-dispatch.yml')
-rw-r--r-- | .github/workflows/browserstack-dispatch.yml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/.github/workflows/browserstack-dispatch.yml b/.github/workflows/browserstack-dispatch.yml new file mode 100644 index 000000000..7c551f2d3 --- /dev/null +++ b/.github/workflows/browserstack-dispatch.yml @@ -0,0 +1,62 @@ +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' + +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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 + 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 + run: npm run test:unit -- -v --browserstack ${{ inputs.browser }} -m ${{ inputs.module }} |