Try to begin with migration to yarn

This commit is contained in:
SleepWalker 2017-12-13 00:13:36 +02:00
parent 62782d3ced
commit c7b6d1961d

View File

@ -39,17 +39,17 @@ test:backend:
php vendor/bin/codecept run -c tests php vendor/bin/codecept run -c tests
test:frontend: test:frontend:
image: node:8.2.1 image: node:8.9.3-alpine
stage: test stage: test
cache: cache:
paths: paths:
- frontend/node_modules - frontend/node_modules
script: script:
- cd frontend - cd frontend
- npm run build:install --silent - yarn run build:install
- npm run lint --silent - yarn run lint
# - npm run flow --silent # disabled due to missing libelf.so.1 in docker container # - yarn flow # disabled due to missing libelf.so.1 in docker container
- npm run test --silent - yarn test
build:production: build:production:
image: docker:latest image: docker:latest