File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,12 @@ jobs:
43
43
- name : Prepare compile
44
44
# vendor ディレクトリの除外には、最初にスラッシュをつけている。これにより resources フォルダ内にある vendor ディレクトリが除外されてしまうのを防いでいる
45
45
run : |
46
- rsync -av --update --delete --stats ./ ./dist/ --exclude='dist/' --exclude='docker_dev/' --exclude='.git/' --exclude='.github/' --exclude='/vendor/' --exclude='node_modules/' --exclude='.circleci/' >& /dev/null
46
+ rsync -av --update --delete --stats ./ ./dist/ --exclude='dist/' --exclude='docker_dev/' --exclude='.git/' --exclude='.github/' --exclude='/vendor/' --exclude='node_modules/' --exclude='.circleci/' --exclude='tests/' --exclude='.husky/' --exclude='phpunit.xml' --exclude='phpcs.xml' --exclude='.editorconfig' --exclude='.env.testing' --exclude='.eslintrc.js' --exclude='.gitattributes' --exclude='.gitignore' --exclude='.prettierrc' --exclude='.stylelintrc.js' >& /dev/null
47
47
- name : Install PHP dependencies
48
48
run : composer install --optimize-autoloader --no-dev
49
49
working-directory : dist
50
50
- name : Install JS dependencies
51
- run : yarn install
51
+ run : yarn install --ignore-scripts
52
52
working-directory : dist
53
53
- name : Compile assets
54
54
run : yarn run production
You can’t perform that action at this time.
0 commit comments