Skip to content

[DEPS][COMPOSER]: Bump larastan/larastan from 2.9.8 to 3.0.0 #238

[DEPS][COMPOSER]: Bump larastan/larastan from 2.9.8 to 3.0.0

[DEPS][COMPOSER]: Bump larastan/larastan from 2.9.8 to 3.0.0 #238

Workflow file for this run

name: Testing
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Composer
id: cache-composer
uses: actions/cache@v3
with:
path: vendor
key: ${{ hashFiles('composer.lock') }}
- name: Cache NPM
id: cache-npm
uses: actions/cache@v3
with:
path: node_modules
key: ${{ hashFiles('package-lock.json') }}
- name: Install
run: ./bin/util/install
- name: Start
run: ./bin/util/start
- name: ESLint
run: ./bin/node/npm run lint
if: always()
- name: Check Blade
if: always()
run: ./bin/node/npm run blade-formatter -- -c
- name: ECS
run: ./bin/util/exec app composer cs:check
if: always()
- name: Stan
run: ./bin/util/exec app composer stan
if: always()
- name: PHPUnit
run: ./bin/app/test
if: always()