Image optimization - replace original with scaled images #1330
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - dev | |
| - 'v*.*' | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' # Adjust to your project's PHP version | |
| coverage: none | |
| - name: Initialize Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| check-latest: true | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - name: Cache npm dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: ${{ runner.os }}-npm- | |
| - name: Install npm dependencies | |
| run: npm clean-install | |
| - name: Create PHPCS cache directory | |
| run: mkdir -p .cache | |
| - name: Install PHPCS dependencies | |
| run: npm run install-composer-packages | |
| - name: Run PHPCS check | |
| run: npm run sniff-check | |
| - name: Run format check | |
| run: npm run format-check |