-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy path.travis.yml
More file actions
30 lines (30 loc) Β· 575 Bytes
/
.travis.yml
File metadata and controls
30 lines (30 loc) Β· 575 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
os: osx
language: node_js
node_js:
- "12.14.0"
cache:
yarn: true
directories:
- ~/.cache
before_script:
# We don't need to do lerna bootstrap, because it doesn't metter while using yarn workspaces
- npm install -g codecov
- yarn
- yarn build
script:
- yarn type-check
- yarn lint
- yarn test
- cd e2e
- yarn
- yarn serve &>/dev/null &
- yarn wait-for-test-server
- yarn start &>/dev/null &
- yarn wait-for-wpackio-server
- yarn cypress:runapp
- yarn build
- yarn cypress:runprod
- yarn archive
- yarn test
- cd ../
- codecov