Update wearerequired/coding-standards requirement from ^2.0 to ^6.0 #150
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coding Standards | |
on: | |
# Checks are required to pass for each PR so we cannot disable them for documentation-only changes. | |
pull_request_target: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**.md' | |
jobs: | |
check: | |
name: Set up and run linters | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Check out repository (push) | |
if: ${{ github.event_name == 'push' }} | |
uses: actions/checkout@v4 | |
- name: Check out repository (pull_request_target) | |
if: ${{ github.event_name == 'pull_request_target' }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
cache-dependency-path: 'package.json' | |
- name: Install Node.js dependencies | |
run: npm i | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.2" | |
coverage: none | |
tools: composer | |
- name: Install PHP dependencies | |
uses: ramsey/composer-install@v3 | |
- name: Make Composer packages available globally | |
run: echo "${PWD}/vendor/bin" >> $GITHUB_PATH | |
- name: Run linters | |
uses: wearerequired/lint-action@v2 | |
with: | |
continue_on_error: false | |
eslint: true | |
stylelint: true | |
stylelint_args: "--allow-empty-input" | |
php_codesniffer: true |