Bump gulp from 4.0.2 to 5.0.0 #85
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
name: CI for WPametu | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [ '7.2', '7.4', '8.0' ] # PHP versions to check. | |
wp: [ 'latest', '6.1' ] # WordPress version to check. | |
services: | |
mysql: | |
image: mysql:8 | |
options: --health-cmd "mysqladmin ping --host 127.0.0.1 --port 3306" --health-interval 20s --health-timeout 10s --health-retries 10 | |
ports: | |
- 3306/tcp | |
env: | |
MYSQL_ROOT_PASSWORD: root | |
name: WordPress ${{ matrix.wp }} in PHP ${{ matrix.php }} UnitTest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup PHP with composer v2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: Start MySQL | |
run: | | |
sudo systemctl start mysql | |
mysql -h 127.0.0.1 --port 3306 -u root --password=root -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';" | |
- name: Install WordPress | |
run: bash bin/install-wp-tests.sh wordpress root root 127.0.0.1:3306 ${{ matrix.wp }} | |
- name: Run PHP Unit Test | |
run: composer test | |
lint: | |
runs-on: ubuntu-latest | |
name: PHP Syntax Check | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup PHP with composer v2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.2 | |
tools: composer | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: Run PHP Lint | |
run: composer phpcs | |
assets: | |
runs-on: ubuntu-latest | |
name: Assets Test | |
steps: | |
- uses: actions/checkout@master | |
- name: Install NPM | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install Packages | |
run: npm install | |
- name: Stylelint and ESlint | |
run: npm run lint | |
- name: Check Build succeed | |
run: npm run build | |
status-check: | |
runs-on: ubuntu-latest | |
name: Check Status | |
needs: [test, assets, lint] | |
steps: | |
- name: Display Status | |
run: echo "All Green!" | |
release: | |
name: Upload Release | |
needs: [status-check] | |
if: contains(github.ref, 'tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Build package. | |
run: bash bin/build.sh | |
- name: Create Zip | |
run: zip -r wpametu.zip ./ | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release WPametu ${{ github.ref }} | |
body: | | |
Release WPametu version ${{ github.ref }}. | |
draft: false | |
prerelease: false | |
- name: Upload Release Zip | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1.0.1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./wpametu.zip | |
asset_name: wpametu.zip | |
asset_content_type: application/zip |