Merge pull request #12 from hametuha/dependabot/npm_and_yarn/webpack-… #45
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: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ ubuntu-latest ] # OS. ubuntu-18.04 is also available. | |
php: [ '7.2', '7.4' ] # PHP versions to check. | |
wp: [ 'latest', '5.9' ] # 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 Lint | |
run: composer phpcs | |
- name: Run PHP Unit Test | |
run: composer test | |
assets: | |
runs-on: ubuntu-latest | |
name: Assets Test | |
steps: | |
- uses: actions/checkout@master | |
- name: Install NPM | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '14' | |
- name: Install Packages | |
run: npm install | |
- name: Stylelint and ESlint | |
run: npm run lint | |
release: | |
name: Upload Release | |
needs: [test, assets] | |
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 |