Skip to content

Commit 8315b43

Browse files
committed
upgrade to Angular 8 and Node 12
1 parent 5061cba commit 8315b43

File tree

5 files changed

+494
-41
lines changed

5 files changed

+494
-41
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ testem.log
4242
Thumbs.db
4343
tmp.html
4444
/local-samples
45+
*.mp4

.travis.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
language: node_js
3+
node_js:
4+
- 12
5+
addons:
6+
apt:
7+
packages:
8+
# Ubuntu 16+ does not install this dependency by default, so we need to install it ourselves
9+
- libgconf-2-4
10+
cache:
11+
# Caches $HOME/.npm when npm ci is default script command
12+
# Caches node_modules in all other cases
13+
npm: true
14+
directories:
15+
# we also need to cache folder with Cypress binary
16+
- ~/.cache
17+
install:
18+
- npm ci
19+
script:
20+
- npm run e2e

0 commit comments

Comments
 (0)