Skip to content

Commit 81d3e2c

Browse files
chore: Release 3.0.0
2 parents 1cb1f48 + 4a52224 commit 81d3e2c

File tree

16 files changed

+8948
-10344
lines changed

16 files changed

+8948
-10344
lines changed

.github/release-drafter.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name-template: Release v$NEXT_MINOR_VERSION 🌈
2+
tag-template: v$NEXT_MINOR_VERSION
3+
categories:
4+
- title: 🚀 Features
5+
label: feature
6+
- title: 🐛 Bug Fixes
7+
label: fix
8+
- title: 🧰 Maintenance
9+
label: chore
10+
- title: 🕮 Documentation
11+
label: docs
12+
- title: ⚙ Dependencies and Libraries
13+
label: dependencies
14+
change-template: '- $TITLE (#$NUMBER) - @$AUTHOR'
15+
template: |
16+
## Changes
17+
18+
$CHANGES
19+
20+
## Contributors
21+
22+
Thanks a lot to our contributors for making this release possible:
23+
$CONTRIBUTORS

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,4 @@ configmap.yml.secret
5050

5151
.tool-versions
5252
.env
53+
.vscode

.travis.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
dist: xenial
22
language: node_js
33
node_js:
4-
- 8.11.1
4+
- 12
55

66
services:
77
- docker
88
- redis
99

1010
env:
11-
- TESTFOLDER=test/serverTest.js CXX=g++-4.8 PATH=$PATH:${HOME}/google-cloud-sdk/bin CLOUDSDK_CORE_DISABLE_PROMPTS=1
11+
- TESTFOLDER=test/serverTest.js
1212
- TESTFOLDER=test/roomsAndSpeakers.js
1313
- TESTFOLDER=test/tracks.js
1414
- TESTFOLDER=test/generatorAndSchedule.js
@@ -24,15 +24,16 @@ addons:
2424
- ubuntu-toolchain-r-test
2525
packages:
2626
- g++-4.8
27+
- chromium-chromedriver
2728
# installing required items for build
2829
install:
29-
- npm install -g istanbul mocha@3
30-
- npm install
31-
- npm install --save-dev
30+
- npm install -g yarn
31+
- yarn global add nyc mocha
32+
- yarn
3233

3334
# testing script
3435
script:
35-
- istanbul cover _mocha -- $TESTFOLDER
36+
- nyc mocha --exit -- $TESTFOLDER
3637

3738
# notify codecov and deploy to cloud
3839
after_success:

0 commit comments

Comments
 (0)