Skip to content

Commit 66e8a97

Browse files
committed
Merge branch 'release/0.137.0'
2 parents 272b70f + 265e9d8 commit 66e8a97

27 files changed

+754
-397
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ insert_final_newline = false
2323
[*.{diff,md}]
2424
trim_trailing_whitespace = false
2525

26-
[{package.json,.travis.yml}]
26+
[{package.json}]
2727
indent_style = space
2828
indent_size = 2

.github/workflows/CI.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- develop
8+
- master
9+
- 'release/*'
10+
- 'hotfix/*'
11+
env:
12+
CI: true
13+
14+
jobs:
15+
fetch-dependencies:
16+
runs-on: ubuntu-latest
17+
if: "!contains(github.event.head_commit.message, 'skip ci')"
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: volta-cli/action@v1
21+
- name: fetch and cache npm dependencies
22+
id: cache-node-modules
23+
uses: actions/cache@v2
24+
with:
25+
path: ./node_modules
26+
key: cached_node_modules_${{ hashFiles('**/yarn.lock') }}
27+
restore-keys: cached_node_modules_
28+
- if: steps.cache-node-modules.outputs.cache-hit != 'true'
29+
run: yarn --prefer-offline --frozen-lockfile --ignore-engines
30+
31+
test-with-coverage:
32+
runs-on: ubuntu-latest
33+
needs: fetch-dependencies
34+
timeout-minutes: 10
35+
steps:
36+
- uses: actions/checkout@v2
37+
- uses: volta-cli/action@v1
38+
- id: cache-node-modules
39+
uses: actions/cache@v2
40+
with:
41+
path: ./node_modules
42+
key: cached_node_modules_${{ hashFiles('**/yarn.lock') }}
43+
restore-keys: cached_node_modules_
44+
45+
- run: yarn bower install --config.interactive=false
46+
- run: yarn test:cover
47+
- name: Send coverage report to coveralls
48+
uses: coverallsapp/github-action@master
49+
with:
50+
github-token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
/libpeerconnection.log
1717
npm-debug.log
1818
testem.log
19+
.yalc
20+
yalc.lock
1921

2022
# idea
2123
.idea

.travis.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)