-
Notifications
You must be signed in to change notification settings - Fork 149
Make CI slow by validating against master definitely typed #718
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,10 @@ language: node_js | |
node_js: | ||
- 'node' | ||
|
||
cache: | ||
directories: | ||
- cache/ | ||
|
||
sudo: false | ||
|
||
branches: | ||
|
@@ -11,6 +15,14 @@ branches: | |
|
||
install: | ||
- npm ci | ||
- git clone https://github.com/DefinitelyTyped/DefinitelyTyped ../DefinitelyTyped | ||
|
||
script: | ||
- npm tes | ||
- npm run build | ||
- npm run clean | ||
- npm run parse | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This relies on a cache to avoid querying npm for everything. It is NOT the most reliable cache, and I don't understand travis' caching strategy. You should test to see whether it's running |
||
- npm run check | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. probably should Note that some of these tasks hit npm (parse, index and maybe generate?) |
||
git: | ||
depth: 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.