➕ Add `laravel/pint` to the project ➖ Remove `squizlabs/php_codesniffer` from the project 🔧 Remove deprecated Composer scripts 👷 Replace phpcs with Pint 🎨 Run Pint --------- Co-authored-by: Ben Word <ben@benword.com>
85 lines
2.3 KiB
YAML
85 lines
2.3 KiB
YAML
name: Main
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
node:
|
|
name: Node ${{ matrix.node }}
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
strategy:
|
|
matrix:
|
|
node: ['20']
|
|
|
|
steps:
|
|
- name: Checkout the project
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup the Node ${{ matrix.node }} environment on ${{ runner.os }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Restore the Yarn cache directory
|
|
id: yarncache
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.yarncache.outputs.dir }}
|
|
key: ${{ runner.os }}-${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
restore-keys: ${{ runner.os }}-${{ matrix.node }}-yarn-
|
|
|
|
- name: Install dependencies using Yarn
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Build and compile assets
|
|
run: |
|
|
yarn build
|
|
cat public/entrypoints.json
|
|
cat public/manifest.json
|
|
|
|
php:
|
|
name: PHP ${{ matrix.php }}
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
strategy:
|
|
matrix:
|
|
php: ['8.1', '8.2']
|
|
|
|
steps:
|
|
- name: Checkout the project
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup the PHP ${{ matrix.php }} environment on ${{ runner.os }}
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
coverage: xdebug
|
|
env:
|
|
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Restore the Composer cache directory
|
|
id: composercache
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.composercache.outputs.dir }}
|
|
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
|
|
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
|
|
|
|
- name: Install Composer dependencies
|
|
run: composer install --no-progress --prefer-dist --optimize-autoloader --no-suggest
|
|
|
|
- name: Run Pint
|
|
run: vendor/bin/pint --test
|