Skip to content

Commit

Permalink
Merge branch 'release/0.137.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
fabmiz committed Oct 19, 2021
2 parents 272b70f + 265e9d8 commit 66e8a97
Show file tree
Hide file tree
Showing 27 changed files with 754 additions and 397 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ insert_final_newline = false
[*.{diff,md}]
trim_trailing_whitespace = false

[{package.json,.travis.yml}]
[{package.json}]
indent_style = space
indent_size = 2
50 changes: 50 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: CI

on:
pull_request:
push:
branches:
- develop
- master
- 'release/*'
- 'hotfix/*'
env:
CI: true

jobs:
fetch-dependencies:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- name: fetch and cache npm dependencies
id: cache-node-modules
uses: actions/cache@v2
with:
path: ./node_modules
key: cached_node_modules_${{ hashFiles('**/yarn.lock') }}
restore-keys: cached_node_modules_
- if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn --prefer-offline --frozen-lockfile --ignore-engines

test-with-coverage:
runs-on: ubuntu-latest
needs: fetch-dependencies
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- id: cache-node-modules
uses: actions/cache@v2
with:
path: ./node_modules
key: cached_node_modules_${{ hashFiles('**/yarn.lock') }}
restore-keys: cached_node_modules_

- run: yarn bower install --config.interactive=false
- run: yarn test:cover
- name: Send coverage report to coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
/libpeerconnection.log
npm-debug.log
testem.log
.yalc
yalc.lock

# idea
.idea
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 66e8a97

Please sign in to comment.