File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ node_modules/
2
2
vendor /
3
3
composer.lock
4
4
npm-debug.log
5
+ yarn.lock
Original file line number Diff line number Diff line change @@ -16,23 +16,29 @@ cache:
16
16
directories :
17
17
- " ${HOME}/bin"
18
18
- " ${HOME}/.composer/cache/files"
19
+ - " ${HOME}/.npm"
20
+ - " ${HOME}/.yarn-cache"
21
+
19
22
before_install :
20
23
- gpg --keyserver hkp://keys.gnupg.net --recv-keys C4133165DF5EB4BAEABDADCACF1E7823C5339B59
24
+ - npm set loglevel error
25
+ - npm set progress false
21
26
22
27
install :
23
28
- if ! shellcheck --version ; then
24
29
curl -sSL "${SHELLCHECK_URL}" | tar --exclude 'SHA256SUMS' --strip-components=1 -C "${HOME}/bin" -xjf -;
25
30
fi
26
31
- shellcheck --version
32
+ - npm install -g yarn
27
33
28
34
script :
29
35
- gpg --verify ./bin/install.sh.sig
30
36
- shellcheck ./bin/install.sh
31
37
- composer self-update || true
32
38
- composer validate
33
39
- composer install --no-progress --no-suggest
34
- - npm install
35
- - npm run test
40
+ - yarn install --no-progress
41
+ - yarn run test
36
42
- ./vendor/bin/behat --version
37
43
- ./vendor/bin/codecept --version
38
44
- ./vendor/bin/composer -V
You can’t perform that action at this time.
0 commit comments