にゃーん

This commit is contained in:
shibafu 2019-03-05 20:25:06 +09:00
parent 2e1ec0dfc7
commit f7d9c5c1e6

View File

@ -2,7 +2,7 @@ version: 2
jobs: jobs:
build: build:
docker: docker:
- image: circleci/php:7.1 - image: circleci/php:7.1-node-browsers
environment: environment:
APP_DEBUG: true APP_DEBUG: true
APP_ENV: testing APP_ENV: testing
@ -34,6 +34,17 @@ jobs:
paths: paths:
- ./vendor - ./vendor
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: yarn install
- save_cache:
key: v1-dependencies-{{ checksum "package.json" }}
paths:
- ./node_modules
- ~/.yarn
- run: php artisan migrate - run: php artisan migrate
# Run linter # Run linter