Update some index pages, particularly the Position one #46
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: 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: Deptrac | |
# run: ./_docker/bin/app/composer deptrac | |
# 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() |