We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d4067 commit 0b7bda2Copy full SHA for 0b7bda2
.gitignore
@@ -5,6 +5,7 @@
5
/tmp
6
/out-tsc
7
.ng_pkg_build
8
+*.tgz
9
10
# dependencies
11
/node_modules
.travis.yml
@@ -17,11 +17,12 @@ cache:
17
- ./node_modules
18
19
install:
20
- - npm install
+ - npm i --no-progress
21
22
script:
23
# Use Chromium instead of Chrome.
24
- export CHROME_BIN=chromium-browser
25
- - xvfb-run -a npm run test -- --no-progress --single-run --code-coverage --browser=ChromeNoSandbox
26
- - xvfb-run -a npm run e2e -- --no-progress
+ - npm lint
+ - xvfb-run -a npm run test -- --no-progress --watch false --code-coverage --browsers ChromeNoSandbox
27
+ - xvfb-run -a npm run e2e
28
- npm run coverage
0 commit comments