Skip to content

because of some updates #168

because of some updates

because of some updates #168

Workflow file for this run

on: push
name: Code Style
jobs:
php:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1']
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Check Coding Standards
run: composer check-style
js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- name: Install Node dependencies
run: npm install --ignore-scripts
- name: Check Coding Standards
run: npm run check-style