Skip to content

Commit

Permalink
Merge pull request #40 from newfold-labs/fix/build-on-wp-6-5
Browse files Browse the repository at this point in the history
Fix/build on wp 6 5
  • Loading branch information
circlecube authored Jan 17, 2025
2 parents fdfb175 + 5324903 commit d5fb8eb
Show file tree
Hide file tree
Showing 9 changed files with 2,620 additions and 2,378 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/brand-plugin-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Build and Test Module Updates in Brand Plugins
on:
pull_request:
types: [ opened, reopened, ready_for_review, synchronize ]
branches:
- main
- trunk
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true

jobs:
setup:
name: Setup
runs-on: ubuntu-latest
outputs:
branch: ${{ steps.extract_branch.outputs.branch }}
steps:

- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch

bluehost:
name: Bluehost Build and Test
needs: setup
uses: newfold-labs/workflows/.github/workflows/module-plugin-test.yml@main
with:
module-repo: ${{ github.repository }}
module-branch: ${{ needs.setup.outputs.branch }}
plugin-repo: 'bluehost/bluehost-wordpress-plugin'
sync-npm-package: true
sync-npm-package-name: 'newfold/wp-module-facebook'
secrets: inherit

hostgator:
name: HostGator Build and Test
needs: setup
uses: newfold-labs/workflows/.github/workflows/module-plugin-test.yml@main
with:
module-repo: ${{ github.repository }}
module-branch: ${{ needs.setup.outputs.branch }}
plugin-repo: 'newfold-labs/wp-plugin-hostgator'
sync-npm-package: true
sync-npm-package-name: 'newfold/wp-module-facebook'
secrets: inherit

crazydomains:
name: Crazy Domains Build and Test
needs: setup
uses: newfold-labs/workflows/.github/workflows/module-plugin-test.yml@main
with:
module-repo: ${{ github.repository }}
module-branch: ${{ needs.setup.outputs.branch }}
plugin-repo: 'newfold-labs/wp-plugin-crazy-domains'
sync-npm-package: true
sync-npm-package-name: 'newfold/wp-module-facebook'
secrets: inherit
58 changes: 58 additions & 0 deletions .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Lint PHP
on:
pull_request:
types: [ opened, edited, reopened, ready_for_review ]
paths:
- '**.php'

concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true

jobs:
phpcs:
name: Run PHP Code Sniffer
runs-on: ubuntu-latest
steps:

- name: Checkout repository
uses: actions/checkout@v4

# User PHP 7.4 for compatibility with the WordPress codesniffer rules.
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: none
tools: phpcs

- name: Get changed files
uses: technote-space/get-diff-action@v6
with:
SUFFIX_FILTER: .php

- name: Get Composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
if: "!! env.GIT_DIFF"

- name: Cache Composer vendor directory
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
if: "!! env.GIT_DIFF"

- name: Validate composer.json and composer.lock
run: composer validate
if: "!! env.GIT_DIFF"

- name: Install dependencies
run: composer install --no-progress --optimize-autoloader --prefer-dist
if: "!! env.GIT_DIFF"

- name: Detecting PHP Code Standards Violations
run: vendor/bin/phpcs --standard=phpcs.xml -s ${{ env.GIT_DIFF }}
if: "!! env.GIT_DIFF"
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ cypress.env.json
/tests/cypress/screenshots
/tests/cypress/videos

# Built-app files
/.docs
/assets/*
/build/index.js*
/dist/*

# File Types
*.log
*.sql
Expand Down
2 changes: 1 addition & 1 deletion bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function () {
define('MONTH_IN_SECONDS', '60 * 60 * 24 * 30');
}
if ( ! defined( 'NFD_FACEBOOK_VERSION' ) ) {
define( 'NFD_FACEBOOK_VERSION', '1.1.0' );
define( 'NFD_FACEBOOK_VERSION', '1.1.1' );
}
new Facebook($container);
},
Expand Down
2 changes: 1 addition & 1 deletion build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'react-jsx-runtime', 'wp-api-fetch', 'wp-components', 'wp-i18n'), 'version' => '326f12b9e8ce91e74883');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-i18n'), 'version' => '8290289d821b05f79d1f');
1 change: 1 addition & 0 deletions build/index.js

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

4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"name": "newfold-labs/wp-module-facebook",
"description": "Module connects to Customers Facebook profile and fetches data",
"type": "library",
"license": [
"GPL-2.0-or-later"
],
"autoload": {
"psr-4": {
"NewfoldLabs\\WP\\Module\\Facebook\\": "includes/"
Expand Down
Loading

0 comments on commit d5fb8eb

Please sign in to comment.