We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f65919 commit fead955Copy full SHA for fead955
1 file changed
.travis.yml
@@ -2,20 +2,23 @@ language: node_js
2
node_js:
3
- 10
4
cache:
5
+ # Caches $HOME/.npm when npm ci is default script command
6
+ # Caches node_modules in all other cases
7
+ npm: true
8
directories:
- - "$HOME/.npm"
9
+ # we also need to cache folder with Cypress binary
10
+ - ~/.cache
11
jobs:
12
include:
13
- stage: test
14
before_script: npm run build
15
script: npm run test:ci
16
- before_script: npm run build
- script: npm run bundlesize
17
+ script: npx bundlesize
18
- stage: release
19
20
script: skip
21
deploy:
22
provider: script
23
skip_cleanup: true
- script:
- - npx semantic-release
24
+ script: npx semantic-release
0 commit comments