* enhance(project): Add .prettierrc to project * chore(deps): Bump dependencies * chore(view): Improve readability of the search form view * chore(admin): Improve language used in the customize_register filter docblock * chore(lint): Lint project assets * chore(change-log): Improve/prepare the changelog for actual release * chore(readme): Improve README feature list * chore(readme): Update README theme directory structure * chore(readme): Add GitHub sponsors badge * chore(readme): Clean up various wording * fix(ci): Fix failing tests * fix(mix): Add index.php to purgecss scope (Supersedes #2423) (Credit @oxyc)
24 lines
511 B
YAML
24 lines
511 B
YAML
version: 2.1
|
|
|
|
orbs:
|
|
node: circleci/node@3
|
|
php: circleci/php@1
|
|
|
|
workflows:
|
|
build:
|
|
jobs:
|
|
- node/test:
|
|
name: node-<< matrix.version >>
|
|
pkg-manager: yarn
|
|
post-steps:
|
|
- run: yarn run build:production
|
|
matrix:
|
|
parameters:
|
|
version: ['12.18', '14.4']
|
|
- php/test:
|
|
name: php-<< matrix.version >>
|
|
test-command: lint
|
|
matrix:
|
|
parameters:
|
|
version: ['7.2', '7.3', '7.4']
|