2015-10-15 02:59:41 +03:00
|
|
|
machine:
|
|
|
|
node:
|
|
|
|
version: 6.1.0
|
|
|
|
environment:
|
|
|
|
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
|
|
|
|
|
|
|
|
compile:
|
|
|
|
override:
|
|
|
|
- npm run build
|
|
|
|
|
|
|
|
test:
|
|
|
|
override:
|
|
|
|
- npm run lint
|
2017-04-20 20:35:38 +03:00
|
|
|
- npm run flow
|
2017-04-10 23:35:48 +03:00
|
|
|
- npm run test-serializer-with-coverage
|
2015-10-15 02:59:41 +03:00
|
|
|
- npm run test-sourcemaps
|
2017-04-20 03:33:54 +03:00
|
|
|
- npm run test-test262 -- --statusFile $CIRCLE_ARTIFACTS/test262-status.txt --timeout 100 --cpuScale 0.25 --verbose:
|
2015-10-15 02:59:41 +03:00
|
|
|
timeout: 1800
|
|
|
|
post:
|
|
|
|
- mv lib/coverage/lcov-report $CIRCLE_ARTIFACTS/coverage-report
|
|
|
|
- mv lib/coverage-sourcemapped $CIRCLE_ARTIFACTS/coverage-report-sourcemapped
|
|
|
|
|
|
|
|
checkout:
|
|
|
|
post:
|
|
|
|
- git submodule sync
|
|
|
|
- git submodule update --init # use submodules
|