Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2019-08-08 19:40:26 +0300
committerMark Otto <otto@github.com>2019-08-08 21:53:30 +0300
commita12466aeff201c713e5093c623b663b9524c3964 (patch)
tree156cefafa5531ebcf7e1c065eff1962d5cc5eb51
parent34afe84424ed581591eba51a5a7f89db38c1456d (diff)
Prep for migration to GitHub Actions CI/CD
-rw-r--r--.github/workflows/test.yml44
-rw-r--r--.travis.yml19
-rw-r--r--README.md2
3 files changed, 45 insertions, 20 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000000..768676846e
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,44 @@
+name: Run tests
+on: [push, pull_request]
+
+jobs:
+ run:
+ name: Node ${{ matrix.node }}
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node: [8, 10, 12]
+
+ steps:
+ - uses: actions/checkout@master
+ with:
+ fetch-depth: 3
+
+ - name: Set Node.js version
+ uses: actions/setup-node@v1.1.0
+ with:
+ version: ${{ matrix.node }}
+
+ - run: node --version
+ - run: npm --version
+ - run: java -version
+
+ - name: Install npm dependencies
+ run: npm ci
+
+ - name: Run tests
+ run: npm test
+
+ - 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
+ run: npm run coveralls
+ if: matrix.node == 10
+ env:
+ COVERALLS_REPO_TOKEN: "${{ secrets.COVERALLS_REPO_TOKEN }}"
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 68e5d07bfc..0000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-addons:
- chrome: stable
-language: node_js
-git:
- depth: 3
-node_js:
- - "8"
- - "10"
- - "12"
-before_script:
- - google-chrome-stable --product-version
-script:
- - npm test || travis_terminate 1
- - if [[ "$TRAVIS_NODE_VERSION" = "10" && "$TRAVIS_EVENT_TYPE" = "push" && ! `git log --format=%B --no-merges -n 1 | grep '\[skip browser\]'` ]]; then npm run js-test-cloud; fi
-after_success:
- - if [[ "$TRAVIS_NODE_VERSION" = "10" ]]; then npm run coveralls; fi
-cache: npm
-notifications:
- email: false
diff --git a/README.md b/README.md
index c2823b7d33..a84d633696 100644
--- a/README.md
+++ b/README.md
@@ -53,7 +53,7 @@ Read the [Getting started page](https://getbootstrap.com/docs/4.3/getting-starte
## Status
-[![Build Status](https://img.shields.io/travis/twbs/bootstrap/master.svg)](https://travis-ci.org/twbs/bootstrap)
+![Build Status](https://action-badges.now.sh/twbs/bootstrap)
[![npm version](https://img.shields.io/npm/v/bootstrap.svg)](https://www.npmjs.com/package/bootstrap)
[![Gem version](https://img.shields.io/gem/v/bootstrap.svg)](https://rubygems.org/gems/bootstrap)
[![Meteor Atmosphere](https://img.shields.io/badge/meteor-twbs%3Abootstrap-blue.svg)](https://atmospherejs.com/twbs/bootstrap)