Skip to content

Bump nanoid from 3.3.16 to 3.3.17 (#4122) #192

Bump nanoid from 3.3.16 to 3.3.17 (#4122)

Bump nanoid from 3.3.16 to 3.3.17 (#4122) #192

Workflow file for this run

---
name: Lint
on:
pull_request:
types:
- opened
- reopened
- ready_for_review
- synchronize
push:
branches:
- master
permissions:
contents: read
jobs:
Lint:
name: Lint (${{ matrix.label }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- label: CSS
command: npx stylelint "_styles/**/*.css" --custom-formatter @csstools/stylelint-formatter-github
- label: JS
command: ./_tests/javascript.sh
- label: PHP
command: ./_tests/php.sh
- label: Translations
command: php ./_tests/translations.php
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup PHP
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # v2.37.2
with:
php-version: '8.5'
tools: composer
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: 'lts/*'
- name: Install
run: npm ci
- name: Lint
run: ${{ matrix.command }}