mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-22 05:03:16 +02:00
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
name: BrowserStack
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "**"
|
|
- "!dependabot/**"
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
FORCE_COLOR: 2
|
|
NODE: 22
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
browserstack:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'twbs/bootstrap'
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
|
with:
|
|
node-version: "${{ env.NODE }}"
|
|
cache: npm
|
|
|
|
- name: Install npm dependencies
|
|
run: npm ci
|
|
|
|
- name: Run dist
|
|
run: npm run dist
|
|
|
|
- name: Run BrowserStack tests
|
|
run: npm run js-test-cloud
|
|
env:
|
|
BROWSER_STACK_ACCESS_KEY: "${{ secrets.BROWSER_STACK_ACCESS_KEY }}"
|
|
BROWSER_STACK_USERNAME: "${{ secrets.BROWSER_STACK_USERNAME }}"
|
|
GITHUB_SHA: "${{ github.sha }}"
|