This commit is contained in:
William Durand 2021-03-26 14:16:35 +01:00 коммит произвёл GitHub
Родитель fb2649128e
Коммит f0ac17ffa7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 13 добавлений и 4 удалений

Просмотреть файл

@ -33,8 +33,19 @@ jobs:
- run: yarn lint:php
- run: test -f wptheme.zip
tests:
docker:
- image: circleci/node:12
steps:
- checkout
- *restore_build_cache
- *run_yarn_install
- *save_build_cache
- run: yarn prettier-ci
workflows:
version: 2
default-workflow:
jobs:
- wptheme
- tests

Просмотреть файл

@ -1,7 +1,5 @@
# exclude everything by default
*.*
# exclude these files
Dockerfile
# exclude these directories
/node_modules/
/build/
@ -13,3 +11,4 @@ cache
# Allow files we want to process
!*.js
!*.scss
!*.md

Просмотреть файл

@ -2,5 +2,5 @@
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "preserve"
"proseWrap": "never"
}

Просмотреть файл

@ -10,7 +10,6 @@
"prettier": "prettier --write '**'",
"prettier-ci": "prettier -c '**'",
"prettier-dev": "pretty-quick --branch main",
"test-ci": "npm run prettier-ci",
"clean": "rimraf './build/'",
"build": "npm run clean && eleventy --config=./eleventy.config.js && npm run sass:build && npm run script:build",
"build:debug": "DEBUG=Eleventy* npm run build:serve",