-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update circle ci to v2 * update travis, appveyor * update package-lock * update travis config * set npm version travisCi
- Loading branch information
Showing
7 changed files
with
4,140 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.5.0 | ||
8.11.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
package-lock=false | ||
save-exact=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,22 @@ | ||
machine: | ||
node: | ||
version: 6.5.0 | ||
|
||
test: | ||
pre: | ||
## runs the 'start' script which | ||
## boots our local app server on port 8080 | ||
## which cypress expects to be running | ||
- npm start: | ||
background: true | ||
override: | ||
## lint source files | ||
- npm run lint | ||
## check if all script names use colons | ||
- npm run colon:names | ||
## and if any of the files changed | ||
## we should stop the build - someone forgot to | ||
## check in linted source files! | ||
- $(npm bin)/stop-build | ||
## now run cypress headlessly | ||
## and record all of the tests. | ||
## Cypress will search for a | ||
## CYPRESS_RECORD_KEY environment | ||
## variable by default and apply | ||
## this to the run. | ||
- $(npm bin)/cypress run --record | ||
|
||
## alternatively we could specify | ||
## a specific record key to use | ||
## like this without having to | ||
## configure environment variables | ||
## - $(npm bin)/cypress run --record --key <your_record_key> | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: cypress/base:8 | ||
environment: | ||
## this enables colors in the output | ||
TERM: xterm | ||
working_directory: ~/app | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: v1-deps | ||
- run: | ||
name: Install Dependencies | ||
command: npm ci | ||
- save_cache: | ||
key: v1-deps | ||
paths: | ||
- ~/.npm | ||
- ~/.cache | ||
- run: npm run test:ci:record |
Oops, something went wrong.