0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-02 14:24:19 +01:00
Bootstrap/.github/workflows/browserstack.yml

38 lines
895 B
YAML
Raw Permalink Normal View History

2020-06-12 20:12:53 +02:00
name: BrowserStack
on:
push:
2021-12-02 22:02:11 +01:00
workflow_dispatch:
2020-06-12 20:12:53 +02:00
env:
FORCE_COLOR: 2
NODE: 16
2020-06-12 20:12:53 +02:00
jobs:
browserstack:
runs-on: ubuntu-latest
if: github.repository == 'twbs/bootstrap' && (!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]'))
timeout-minutes: 30
2020-06-12 20:12:53 +02:00
steps:
- name: Clone repository
2022-05-24 09:40:37 +02:00
uses: actions/checkout@v3
2020-06-12 20:12:53 +02:00
- name: Set up Node.js
2022-05-24 09:40:37 +02:00
uses: actions/setup-node@v3
2020-06-12 20:12:53 +02:00
with:
node-version: "${{ env.NODE }}"
cache: npm
2020-06-12 20:12:53 +02:00
- 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 }}"