-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update openlab-attributions for accessibility changes.
See #3258.
- Loading branch information
1 parent
8b719a3
commit 2750233
Showing
22 changed files
with
14,587 additions
and
4,050 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
wp-content/plugins/openlab-attributions/.github/workflows/package-zip.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Packaging a release + zip | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [16.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Build | ||
run: | | ||
npm install | ||
npm run build | ||
- name: Zip | ||
uses: thedoctor0/zip-release@main | ||
with: | ||
type: 'zip' | ||
filename: 'openlab-attributions.zip' | ||
exclusions: '*.git* /*node_modules/* vendor composer.* package.json package-lock.json phpcs.xml.dist' | ||
|
||
- name: Upload Release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: "openlab-attributions.zip" | ||
token: ${{ secrets.GITHUB_TOKEN }} |
41 changes: 41 additions & 0 deletions
41
wp-content/plugins/openlab-attributions/.github/workflows/phpcs.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Coding Standards | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**.php' | ||
branches: | ||
- main | ||
- '2.*' | ||
pull_request: | ||
|
||
jobs: | ||
phpcs: | ||
name: PHP coding standards | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '7.3' | ||
coverage: none | ||
tools: composer, cs2pr | ||
|
||
- name: Get composer cache directory | ||
id: composer-cache | ||
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --no-progress --prefer-dist --no-interaction | ||
|
||
- name: Run PHPCS | ||
run: vendor/bin/phpcs -q -n --report=checkstyle | cs2pr |
231 changes: 2 additions & 229 deletions
231
wp-content/plugins/openlab-attributions/build/css/editor.css
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
wp-content/plugins/openlab-attributions/build/css/editor.css.map
Large diffs are not rendered by default.
Oops, something went wrong.
32 changes: 2 additions & 30 deletions
32
wp-content/plugins/openlab-attributions/build/css/style.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
wp-content/plugins/openlab-attributions/build/css/style.css.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
wp-content/plugins/openlab-attributions/build/js/block-editor.asset.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<?php return array('dependencies' => array('react', 'react-dom', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-rich-text'), 'version' => '07f9e94cd0649603'); | ||
<?php return array('dependencies' => array('react', 'react-dom', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-rich-text'), 'version' => 'd217b1a75aabd340'); |
Oops, something went wrong.