-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
13,079 additions
and
513 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,44 @@ | ||
name: Linting | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- feature/* | ||
- release/* | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: 'The branch to run the workflow on' | ||
required: false | ||
default: 'master' | ||
|
||
jobs: | ||
phpcs: | ||
name: PHP Code Sniffer | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP version | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.0 | ||
coverage: none | ||
tools: composer, cs2pr | ||
|
||
- name: Install dependencies | ||
run: composer install | ||
|
||
- id: changes | ||
run: | | ||
URL="https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files" | ||
FILES=$(curl -s -X GET -G $URL | jq -r '.[] | .filename' | xargs) | ||
echo "{files}={$FILES}" >> $GITHUB_OUTPUT | ||
- name: Test changed files | ||
run: ./vendor/bin/phpcs ${{ steps.changes.outputs.files }} --report-full --report-checkstyle=./.github/phpcs-report.xml --runtime-set testVersion 8.0 | ||
|
||
- name: Upload PHPCS report | ||
if: ${{ always() }} | ||
run: cs2pr ./.github/phpcs-report.xml |
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,35 @@ | ||
name: "Build and Release plugin" | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP version | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.0 | ||
coverage: none | ||
tools: composer | ||
|
||
- name: Setup github token | ||
run: composer config -g github-oauth.github.com ${{ secrets.ACCESS_TOKEN }} | ||
|
||
- name: Build | ||
run: | | ||
composer install | ||
composer update --no-dev --no-scripts | ||
npm install && npm run build | ||
- name: Release | ||
id: release | ||
uses: sultann/wordpress-plugin-deploy@master | ||
with: | ||
username: ${{ secrets.SVN_USERNAME }} | ||
password: ${{ secrets.SVN_PASSWORD }} | ||
slack_webhook: ${{ secrets.SLACK_WEBHOOK }} |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.