File tree 5 files changed +46
-49
lines changed
5 files changed +46
-49
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ about: Create a report to help us improve
4
4
title : ' '
5
5
labels : ' '
6
6
assignees : ' '
7
-
8
7
---
9
8
10
9
## Describe the bug
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ about: Suggest an idea for this project
4
4
title : ' '
5
5
labels : ' '
6
6
assignees : ' '
7
-
8
7
---
9
8
10
9
## Is your feature request related to a problem? Please describe
Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ - bs3-dev
7
+ pull_request :
8
+ branches :
9
+ - master
10
+ - bs3-dev
11
+ jobs :
12
+ ci :
13
+ name : CI
14
+ runs-on : ${{ matrix.os }}
15
+ strategy :
16
+ matrix :
17
+ browser : [ChromeHeadless, FirefoxHeadless]
18
+ os : [ubuntu-latest, windows-latest, macOS-latest]
19
+ steps :
20
+ - name : Checkout
21
+ uses : actions/checkout@v2
22
+ - name : Setup Node.js environment
23
+ uses : actions/setup-node@v1
24
+ with :
25
+ node-version : 12.x
26
+ - name : Update Brew (macOS)
27
+ if : matrix.os == 'macOS-latest'
28
+ run : brew update
29
+ - name : Install Chrome (macOS)
30
+ if : matrix.os == 'macOS-latest' && matrix.browser == 'ChromeHeadless'
31
+ run : brew cask install google-chrome
32
+ - name : Install Firefox (macOS)
33
+ if : matrix.os == 'macOS-latest' && matrix.browser == 'FirefoxHeadless'
34
+ run : brew cask install firefox
35
+ - name : Install Dependencies
36
+ run : yarn bootstrap
37
+ - name : Run Tests
38
+ run : yarn test
39
+ env :
40
+ BROWSER : ${{ matrix.browser }}
41
+ - name : Codecov
42
+ uses : codecov/codecov-action@v1
43
+ - name : Build Project
44
+ run : yarn build
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
> [ Bootstrap 4] [ bootstrap ] components built with [ React] [ react ] .
4
4
5
- [ ![ GitHub Actions Build status] [ gh-actions-badge ]] [ gh-actions ]
5
+ [ ![ GitHub Actions CI status] [ gh-actions-badge ]] [ gh-actions ]
6
6
[ ![ Travis CI Build status] [ travis-badge ]] [ travis ]
7
7
[ ![ npm] [ npm-badge ]] [ npm ]
8
8
[ ![ Codecov] [ codecov-badge ]] [ codecov ]
@@ -64,5 +64,5 @@ Yes please! See the [contributing guidelines][contributing] for details.
64
64
[ discord ] : https://discord.gg/0ZcbPKXt5bXLs9XK
65
65
[ netlify-badge ] : https://api.netlify.com/api/v1/badges/91501718-8820-4d69-b7fe-1616eff5914e/deploy-status
66
66
[ netlify ] : https://app.netlify.com/sites/react-bootstrap/deploys
67
- [ gh-actions-badge ] : https://github.com/react-bootstrap/react-bootstrap/workflows/Node%20CI /badge.svg
67
+ [ gh-actions-badge ] : https://github.com/react-bootstrap/react-bootstrap/workflows/CI /badge.svg
68
68
[ gh-actions ] : https://github.com/react-bootstrap/react-bootstrap/actions
You can’t perform that action at this time.
0 commit comments