enhance(theme): Remove theme support for default block patterns chore(theme): Reorder actions inside of the `after_setup_theme` hook by usefulness chore(ci): Add `8.0` to version matrix
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.3', '7.4', '8.0']
|