Skip to content

Bump webpack from 5.96.1 to 5.97.1 #648

Bump webpack from 5.96.1 to 5.97.1

Bump webpack from 5.96.1 to 5.97.1 #648

Workflow file for this run

name: PHP/Assets Lint
on: [push, pull_request]
jobs:
lint-php:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
# - name: Run test suite
# run: composer lint
# - name: Check against phpcs.xml.dist
# run: composer checkcs
lint-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run lint:js --silent
- run: npm run build