Squash merge branch linting
This commit is contained in:
parent
0c7c0d155b
commit
c8950e6d1a
35 changed files with 15883 additions and 1769 deletions
49
.github/workflows/lint-code.yml
vendored
Normal file
49
.github/workflows/lint-code.yml
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
name: Code Linting
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: Lint all code
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Validate composer.json and composer.lock
|
||||
run: composer validate --strict
|
||||
|
||||
- name: Cache Composer packages
|
||||
id: composer-cache
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: vendor
|
||||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-php-
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer install --prefer-dist --no-progress --ignore-platform-reqs
|
||||
|
||||
- name: Validate workflow files (YAML)
|
||||
run: npm run validate:yaml
|
||||
|
||||
- name: Lint Plugin code (PHP)
|
||||
run: composer run lint:php
|
||||
|
||||
- name: Lint Plugin scripts (JS)
|
||||
run: composer run format:js:fix && composer run lint:js
|
||||
|
||||
#- name: Lint stylesheets (CSS)
|
||||
# run: composer run lint:css
|
||||
|
||||
#- name: Lint templates (HTML)
|
||||
# run: composer run lint:html
|
||||
|
||||
- name: Lint documentation (Markdown)
|
||||
run: composer run lint:md
|
1
.github/workflows/ossar-analysis.yml
vendored
1
.github/workflows/ossar-analysis.yml
vendored
|
@ -16,6 +16,7 @@ jobs:
|
|||
OSSAR-Scan:
|
||||
# OSSAR runs on windows-latest.
|
||||
# ubuntu-latest and macos-latest support coming soon
|
||||
name: Scan code with OSSAR
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
|
|
46
.github/workflows/php.yml
vendored
46
.github/workflows/php.yml
vendored
|
@ -1,46 +0,0 @@
|
|||
name: PHP Composer
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Validate composer.json and composer.lock
|
||||
run: composer validate --strict
|
||||
|
||||
- name: Cache Composer packages
|
||||
id: composer-cache
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: vendor
|
||||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-php-
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer install --prefer-dist --no-progress --ignore-platform-reqs
|
||||
|
||||
- name: Lint PHP code
|
||||
run: composer run lint:php
|
||||
|
||||
- name: Lint JS code
|
||||
run: composer run format:js:fix && composer run lint:js
|
||||
|
||||
#- name: Lint stylesheets
|
||||
# run: composer run lint:css
|
||||
|
||||
- name: Lint Markdown files
|
||||
run: composer run lint:md
|
||||
|
||||
# TODO: Add tests
|
||||
# - name: Run test suite
|
||||
# run: composer run-script test
|
|
@ -1,13 +1,13 @@
|
|||
name: Release Handler
|
||||
name: Pre-release Handler
|
||||
|
||||
# Action runs when a new release is published.
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
release-new:
|
||||
name: Issue new release
|
||||
build:
|
||||
name: Build the Plugin for pre-release
|
||||
if: "github.event.release.prerelease"
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
@ -16,7 +16,7 @@ jobs:
|
|||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
composer install --no-dev --optimize-autoloader
|
||||
composer install --no-dev --optimize-autoloader --no-progress
|
||||
|
||||
- name: Build Plugin
|
||||
run: |
|
20
.github/workflows/snyk.yml
vendored
20
.github/workflows/snyk.yml
vendored
|
@ -1,13 +1,19 @@
|
|||
name: Snyk
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
security:
|
||||
name: Scan for vulnerabilities
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Run Snyk to check for vulnerabilities
|
||||
uses: snyk/actions/php@master
|
||||
env:
|
||||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
||||
with:
|
||||
args: --all-projects
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@master
|
||||
|
||||
- name: Run Snyk to check for vulnerabilities
|
||||
uses: snyk/actions/php@master
|
||||
env:
|
||||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
||||
with:
|
||||
args: --all-projects
|
||||
|
|
Reference in a new issue