Skip to content

Commit

Permalink
Update openlab-attributions for accessibility changes.
Browse files Browse the repository at this point in the history
See #3258.
  • Loading branch information
boonebgorges committed Oct 19, 2023
1 parent 8b719a3 commit 2750233
Show file tree
Hide file tree
Showing 22 changed files with 14,587 additions and 4,050 deletions.
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 }}
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 wp-content/plugins/openlab-attributions/build/css/editor.css

Large diffs are not rendered by default.

Large diffs are not rendered by default.

32 changes: 2 additions & 30 deletions 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.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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');
Loading

0 comments on commit 2750233

Please sign in to comment.