2019-09-26 09:25:26 -04:00
|
|
|
name: BrowserStack
|
2020-10-29 13:26:15 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
2019-09-26 09:25:26 -04:00
|
|
|
env:
|
|
|
|
CI: true
|
2020-11-23 14:32:25 -05:00
|
|
|
FORCE_COLOR: 2
|
2020-10-29 13:38:31 -04:00
|
|
|
NODE: 14.x
|
2019-09-26 09:25:26 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
browserstack:
|
|
|
|
runs-on: ubuntu-latest
|
2020-10-26 14:55:51 -04:00
|
|
|
if: github.repository == 'twbs/bootstrap' && (!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]'))
|
2020-12-10 04:52:22 -05:00
|
|
|
timeout-minutes: 30
|
2019-09-26 09:25:26 -04:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-10-29 13:26:15 -04:00
|
|
|
- name: Set up Node.js
|
2019-09-26 09:25:26 -04:00
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: "${{ env.NODE }}"
|
|
|
|
|
|
|
|
- name: Set up npm cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
2020-06-10 01:29:22 -04:00
|
|
|
key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
|
2019-09-26 09:25:26 -04:00
|
|
|
restore-keys: |
|
2020-06-10 01:29:22 -04:00
|
|
|
${{ runner.OS }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
|
2019-09-26 09:25:26 -04:00
|
|
|
${{ runner.OS }}-node-v${{ env.NODE }}-
|
|
|
|
|
|
|
|
- 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 }}"
|