8000 Improve sanitize_slug · cloudinary/cloudinary_wordpress@fa2320b · GitHub
[go: up one dir, main page]

Skip to content

Improve sanitize_slug #29

Improve sanitize_slug

Improve sanitize_slug #29

Workflow file for this run

name: CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '5.6', '7.4', '8.3' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'npm'
- name: Cache Composer
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-${{ matrix.php }}-
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Run build
run: npm run build
0