Skip to content

Separate old browser notifier from old browser support #95

Separate old browser notifier from old browser support

Separate old browser notifier from old browser support #95

Workflow file for this run

name: Lint
on:
push:
branches: [ '!main' ]
pull_request:
branches: [ 'main' ]
jobs:
lint:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- uses: editorconfig-checker/action-editorconfig-checker@main
- name: Check if all files meet EditorConfig rules
run: editorconfig-checker
- name: Check shell scripts with ShellCheck for errors
uses: ludeeus/[email protected]
with:
scandir: './development'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install npm dependencies
run: npm ci
- name: Check if css files meet lint rules
run: npm run lint:css
- name: Check if js files meet lint rules
run: npm run lint:js
- name: Install PHP dependencies with composer
uses: php-actions/composer@v6
- name: Check if PHP files meet coding standards
run: make lint-php