[sonoff-connector] Refactoring console commands #1161
Workflow file for this run
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: "build" | |
on: | |
pull_request: | |
paths-ignore: | |
- "docs/**" | |
push: | |
branches: | |
- "main" | |
tags: | |
- v* | |
schedule: | |
- cron: "0 8 * * 1" # At 08:00 on Monday | |
env: | |
extensions: "json, intl, :php-psr" | |
cache-version: "1" | |
composer-version: "v2" | |
composer-options: "--no-interaction --no-progress --no-suggest --prefer-dist --prefer-stable" | |
COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ secrets.ORGANIZATION_ACCESS_TOKEN }}"}}' | |
jobs: | |
qa: | |
name: "Code quality assurance" | |
runs-on: "${{ matrix.operating-system }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: [ "8.1", "8.2" ] | |
node-version: [ "18" ] | |
operating-system: [ "ubuntu-latest" ] | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Setup PHP cache environment" | |
id: "extcache" | |
uses: "shivammathur/cache-extensions@v1" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
key: "${{ env.cache-version }}" | |
- name: "Cache PHP extensions" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.extcache.outputs.dir }}" | |
key: "${{ steps.extcache.outputs.key }}" | |
restore-keys: "${{ steps.extcache.outputs.key }}" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
tools: "composer:${{ env.composer-version }}, cs2pr" | |
coverage: "none" | |
- name: "Setup problem matchers for PHP" | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- name: "Setup composer & install dependencies" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "highest" | |
composer-options: "${{ env.composer-options }}" | |
custom-cache-key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}" | |
- name: "Setup node" | |
uses: "actions/setup-node@v4" | |
with: | |
node-version: "${{ matrix.node-version }}" | |
- name: "Get Yarn cache directory" | |
id: "yarn-cache-dir-path" | |
run: 'echo "::set-output name=dir::$(yarn cache dir)"' | |
- name: "Cache JS dependencies" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.yarn-cache-dir-path.outputs.dir }}" | |
key: "${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }}" | |
restore-keys: "${{ runner.os }}-node-modules-" | |
- name: "Install dependencies" | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: "yarn install" | |
- name: "Check Prettier with eslint" | |
run: "yarn pretty:check" | |
- name: "Coding Standard" | |
run: "make cs" | |
static-analysis: | |
name: "Code static analysis" | |
runs-on: "${{ matrix.operating-system }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: [ "8.1", "8.2" ] | |
node-version: [ "18" ] | |
operating-system: [ "ubuntu-latest" ] | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Setup PHP cache environment" | |
id: "extcache" | |
uses: "shivammathur/cache-extensions@v1" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
key: "${{ env.cache-version }}" | |
- name: "Cache PHP extensions" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.extcache.outputs.dir }}" | |
key: "${{ steps.extcache.outputs.key }}" | |
restore-keys: "${{ steps.extcache.outputs.key }}" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
tools: "composer:${{ env.composer-version }}" | |
coverage: "none" | |
- name: "Setup problem matchers for PHP" | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- name: "Setup composer & install dependencies" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "highest" | |
composer-options: "${{ env.composer-options }}" | |
custom-cache-key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}" | |
- name: "Setup node" | |
uses: "actions/setup-node@v4" | |
with: | |
node-version: "${{ matrix.node-version }}" | |
- name: "Get Yarn cache directory" | |
id: "yarn-cache-dir-path" | |
run: 'echo "::set-output name=dir::$(yarn cache dir)"' | |
- name: "Cache JS dependencies" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.yarn-cache-dir-path.outputs.dir }}" | |
key: "${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }}" | |
restore-keys: "${{ runner.os }}-node-modules-" | |
- name: "Install dependencies" | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: "yarn install" | |
- name: "Initialize lerna" | |
run: "yarn bootstrap" | |
- name: "Link JS dependencies" | |
run: "yarn lerna link" | |
- name: "Build JS dependencies" | |
run: "yarn build" | |
- name: "PHPStan" | |
run: "make phpstan" | |
- name: "Check typescript" | |
run: "yarn types" | |
tests: | |
name: "Code tests" | |
runs-on: "${{ matrix.operating-system }}" | |
needs: [ "qa", "static-analysis" ] | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: [ "8.1", "8.2" ] | |
operating-system: [ "ubuntu-latest" ] | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name : "Setup MySQL" | |
uses : "mirromutth/[email protected]" | |
with : | |
mysql version : "5.7" | |
mysql database : "testdb" | |
mysql root password : "root" | |
- name: "Setup PHP cache environment" | |
id: "extcache" | |
uses: "shivammathur/cache-extensions@v1" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
key: "${{ env.cache-version }}" | |
- name: "Cache PHP extensions" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.extcache.outputs.dir }}" | |
key: "${{ steps.extcache.outputs.key }}" | |
restore-keys: "${{ steps.extcache.outputs.key }}" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
tools: "composer:${{ env.composer-version }}" | |
coverage: "none" | |
- name: "Setup problem matchers for PHP" | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- name: "Setup composer & install dependencies" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "highest" | |
composer-options: "${{ env.composer-options }}" | |
custom-cache-key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}" | |
- name: "Tests" | |
run: "make tests" | |
- name: "Upload logs" | |
uses: "actions/upload-artifact@v3" | |
with: | |
name: "Logs - Tests (${{ matrix.operating-system }}, ${{ matrix.php-version }})" | |
path: "var/log" | |
if-no-files-found: "ignore" | |
tests-code-coverage: | |
name: "Code tests with code coverage" | |
runs-on: "${{ matrix.operating-system }}" | |
needs: [ "tests" ] | |
strategy: | |
matrix: | |
php-version: [ "8.2" ] | |
operating-system: [ "ubuntu-latest" ] | |
fail-fast: false | |
if: "github.event_name == 'push'" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name : "Setup MySQL" | |
uses : "mirromutth/[email protected]" | |
with : | |
mysql version : "5.7" | |
mysql database : "testdb" | |
mysql root password : "root" | |
- name: "Setup PHP cache environment" | |
id: "extcache" | |
uses: "shivammathur/cache-extensions@v1" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
key: "${{ env.cache-version }}" | |
- name: "Cache PHP extensions" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.extcache.outputs.dir }}" | |
key: "${{ steps.extcache.outputs.key }}" | |
restore-keys: "${{ steps.extcache.outputs.key }}" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
tools: "composer:${{ env.composer-version }}" | |
coverage: "pcov" | |
- name: "Setup problem matchers for PHP" | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- name: "Setup composer & install dependencies" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "highest" | |
composer-options: "${{ env.composer-options }}" | |
custom-cache-key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}" | |
- name: "Tests" | |
run: "make coverage-clover" | |
- name: "Coveralls.io" | |
env: | |
CI_NAME: github | |
CI: true | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.5.3/php-coveralls.phar | |
php php-coveralls.phar --verbose --config tools/.coveralls.yml | |
tests-mutations: | |
name: "Code tests for mutants" | |
runs-on: "${{ matrix.operating-system }}" | |
strategy: | |
matrix: | |
php-version: [ "8.2" ] | |
operating-system: [ "ubuntu-latest" ] | |
fail-fast: false | |
if: "github.event_name == 'push'" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name : "Setup MySQL" | |
uses : "mirromutth/[email protected]" | |
with : | |
mysql version : "5.7" | |
mysql database : "testdb" | |
mysql root password : "root" | |
- name: "Setup PHP cache environment" | |
id: "extcache" | |
uses: "shivammathur/cache-extensions@v1" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
key: "${{ env.cache-version }}" | |
- name: "Cache PHP extensions" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.extcache.outputs.dir }}" | |
key: "${{ steps.extcache.outputs.key }}" | |
restore-keys: "${{ steps.extcache.outputs.key }}" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
tools: "composer:${{ env.composer-version }}" | |
coverage: "pcov" | |
- name: "Setup problem matchers for PHP" | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- name: "Setup composer & install dependencies" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "highest" | |
composer-options: "${{ env.composer-options }}" | |
custom-cache-key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}" | |
- name: "Mutation tests" | |
run: "make mutations-tests" | |
- name: "Mutation tests with report" | |
env: | |
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |
shell: "bash" | |
run: "make mutations-infection ARGS='--logger-github'" | |
- name: "Upload logs" | |
uses: "actions/upload-artifact@v3" | |
with: | |
name: "Logs - Mutations" | |
path: "var/tools/Coverage/mutations/infection.log" | |
if-no-files-found: "ignore" | |
lint: | |
name: "Code linting" | |
runs-on: "${{ matrix.operating-system }}" | |
strategy: | |
matrix: | |
php-version: [ "8.1", "8.2" ] | |
node-version: [ "18" ] | |
operating-system: [ "ubuntu-latest" ] | |
fail-fast: false | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Setup PHP cache environment" | |
id: "extcache" | |
uses: "shivammathur/cache-extensions@v1" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
key: "${{ env.cache-version }}" | |
- name: "Cache PHP extensions" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.extcache.outputs.dir }}" | |
key: "${{ steps.extcache.outputs.key }}" | |
restore-keys: "${{ steps.extcache.outputs.key }}" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.extensions }}" | |
tools: "composer:${{ env.composer-version }}" | |
coverage: "none" | |
- name: "Setup problem matchers for PHP" | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- name: "Setup composer & install dependencies" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "highest" | |
composer-options: "${{ env.composer-options }}" | |
custom-cache-key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}" | |
- name: "Setup node" | |
uses: "actions/setup-node@v4" | |
with: | |
node-version: "${{ matrix.node-version }}" | |
- name: "Get Yarn cache directory" | |
id: "yarn-cache-dir-path" | |
run: 'echo "::set-output name=dir::$(yarn cache dir)"' | |
- name: "Cache JS dependencies" | |
uses: "actions/cache@v3" | |
with: | |
path: "${{ steps.yarn-cache-dir-path.outputs.dir }}" | |
key: "${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }}" | |
restore-keys: "${{ runner.os }}-node-modules-" | |
- name: "Install dependencies" | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: "yarn install" | |
- name: "Initialize lerna" | |
run: "yarn bootstrap" | |
- name: "Link JS dependencies" | |
run: "yarn lerna link" | |
- name: "Build JS dependencies" | |
run: "yarn build" | |
- name: "Check js linter" | |
run: "yarn lint:js" | |
- name: "Check styles linter" | |
run: "yarn lint:styles" | |
- name: "Check php linter" | |
run: "make lint" |