Skip to content

Localisation updates from https://translatewiki.net. #3294

Localisation updates from https://translatewiki.net.

Localisation updates from https://translatewiki.net. #3294

Workflow file for this run

name: Lint
on: [push]
jobs:
phpcs-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
- name: Install Composer Dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: PHP Lint
run: composer run lint
js-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: '18.x'
- name: Install Dependencies
run: npm ci
- name: Run ESlint and Stylelint
run: npm run lint
- name: Run i18 Validation
run: npm run i18n:validate