2019-09-24 05:53:50 -04:00
|
|
|
name: Tests
|
2019-08-08 12:40:26 -04:00
|
|
|
on: [push, pull_request]
|
2019-10-08 01:47:40 -04:00
|
|
|
env:
|
|
|
|
CI: true
|
2019-08-08 12:40:26 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: Node ${{ matrix.node }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
2019-08-23 19:32:29 -04:00
|
|
|
fail-fast: false
|
2019-08-08 12:40:26 -04:00
|
|
|
matrix:
|
2019-10-09 04:11:37 -04:00
|
|
|
node: [10, 12]
|
2019-08-08 12:40:26 -04:00
|
|
|
|
|
|
|
steps:
|
2019-08-23 19:32:29 -04:00
|
|
|
- name: Clone repository
|
2019-09-24 05:53:50 -04:00
|
|
|
uses: actions/checkout@v1
|
2019-08-09 11:28:41 -04:00
|
|
|
with:
|
|
|
|
fetch-depth: 3
|
|
|
|
|
|
|
|
- name: Set Node.js version
|
2019-09-16 08:28:25 -04:00
|
|
|
uses: actions/setup-node@v1
|
2019-08-09 11:28:41 -04:00
|
|
|
with:
|
2019-09-16 08:28:25 -04:00
|
|
|
node-version: ${{ matrix.node }}
|
2019-08-09 11:28:41 -04:00
|
|
|
|
|
|
|
- run: node --version
|
|
|
|
- run: npm --version
|
|
|
|
- run: java -version
|
|
|
|
|
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: npm test
|
|
|
|
|
|
|
|
- name: Run bundlesize
|
|
|
|
run: npm run bundlesize
|
2019-08-23 19:32:29 -04:00
|
|
|
if: matrix.node == 10
|
2019-08-09 11:28:41 -04:00
|
|
|
env:
|
|
|
|
BUNDLESIZE_GITHUB_TOKEN: "${{ secrets.BUNDLESIZE_GITHUB_TOKEN }}"
|
|
|
|
|
|
|
|
- name: Run BrowserStack tests
|
|
|
|
run: npm run js-test-cloud
|
|
|
|
if: matrix.node == 10 && github.repository == 'twbs/bootstrap' && github.event_name == 'push'
|
|
|
|
env:
|
|
|
|
BROWSER_STACK_ACCESS_KEY: "${{ secrets.BROWSER_STACK_ACCESS_KEY }}"
|
|
|
|
BROWSER_STACK_USERNAME: "${{ secrets.BROWSER_STACK_USERNAME }}"
|
|
|
|
|
|
|
|
- name: Run Coveralls
|
2019-11-18 14:03:43 -05:00
|
|
|
uses: coverallsapp/github-action@master
|
|
|
|
if: matrix.node == 10
|
|
|
|
with:
|
|
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
path-to-lcov: "./js/coverage/lcov.info"
|