File tree 4 files changed +5784
-8
lines changed
4 files changed +5784
-8
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ matrix:
7
7
8
8
install :
9
9
- ps : Install-Product node $env:nodejs_version
10
- - npm install -g npm
11
- - npm install
10
+ - npm install -g yarn
11
+ - yarn install
12
12
13
13
test_script :
14
14
- node --version
15
- - npm --version
16
- - npm test
15
+ - yarn --version
16
+ - yarn test
17
17
- node tests\run_e2e.js
18
18
19
19
build : off
Original file line number Diff line number Diff line change 1
1
dist /
2
2
node_modules /
3
3
npm-debug.log *
4
- yarn.lock
5
4
6
5
# IDEs
7
6
.idea /
Original file line number Diff line number Diff line change @@ -54,11 +54,12 @@ before_install:
54
54
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CHROME_BIN=chromium-browser; fi
55
55
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo "--no-sandbox" > ~/.config/chromium-flags.conf; fi
56
56
- npm install -g npm
57
- - npm config set spin false
58
- - npm config set progress false
57
+ - npm install -g yarn
58
+ - yarn config set spin false
59
+ - yarn config set progress false
59
60
60
61
install :
61
- - npm install --no-optional
62
+ - yarn install --no-optional
62
63
63
64
script :
64
65
- if [[ "$SCRIPT" ]]; then npm run-script $SCRIPT; fi
You can’t perform that action at this time.
0 commit comments