Skip to content

Commit 56c5d70

Browse files
authored
Merge pull request #156 from delphi-hub/feature/dependencyUpdate
Updates Client Dependencies
2 parents a31a992 + e1a1f4b commit 56c5d70

33 files changed

+4426
-3876
lines changed

Diff for: .travis.yml

+23-14
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
1-
language: scala
2-
scala:
3-
- 2.12.4
1+
matrix:
2+
include:
3+
language: scala
4+
scala:
5+
- 2.9.3
6+
script:
7+
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then sbt ++$TRAVIS_SCALA_VERSION test; fi'
8+
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage; fi'
9+
language: node_js
10+
node_js:
11+
- "12"
12+
addons:
13+
apt:
14+
sources:
15+
- google-chrome
16+
packages:
17+
- google-chrome-stable
418

5-
addons:
6-
apt:
7-
sources:
8-
- google-chrome
9-
packages:
10-
- google-chrome-stable
19+
before_script:
20+
- npm install -g @angular/cli
21+
script:
22+
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then cd client && npm install && ng build --prod && npm run test -- --no-progress --browsers=ChromeHeadlessCI --source-map=false && cd .. ; fi'
23+
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then cd client && npm install && ng build --prod && npm run test -- --no-progress --browsers=ChromeHeadlessCI --source-map=false && cd .. ; fi'
24+
1125

12-
before_install:
13-
- npm install -g @angular/cli@^7.3.7
14-
script:
15-
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then sbt ++$TRAVIS_SCALA_VERSION test; cd client && npm install && ng build --prod && npm run test -- --no-progress --browsers=ChromeHeadlessCI --source-map=false && cd .. ; fi'
16-
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage; cd client && npm install && ng build --prod && npm run test -- --no-progress --browsers=ChromeHeadlessCI --source-map=false && cd .. ; fi'
1726
after_success:
1827
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi'
File renamed without changes.

0 commit comments

Comments
 (0)