Skip to content

Bump braces, webpack and webpack-cli in /build #19

Bump braces, webpack and webpack-cli in /build

Bump braces, webpack and webpack-cli in /build #19

Workflow file for this run

name: Tests
on:
push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup php
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-test-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-test-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run php-cs-fixer
run: vendor/bin/php-cs-fixer fix --dry-run
- name: Run phpstan
run: vendor/bin/phpstan analyze