Revert "Revert "Headers: Use native sticky local navigation bar & sit… #109
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: Static Analysis (Linting) | |
# This workflow is triggered on pushes to trunk, and any PRs. | |
on: | |
push: | |
branches: [trunk] | |
pull_request: | |
jobs: | |
check: | |
name: Lint everything | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 | |
- name: Install NodeJS | |
uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0 | |
with: | |
node-version-file: '.nvmrc' | |
cache: yarn | |
- name: Install dependencies & setup configs | |
run: | | |
yarn setup:tools | |
- name: Lint CSS | |
run: | | |
yarn workspaces run lint:css | |
- name: Lint JS | |
run: | | |
yarn workspaces run lint:js | |
- name: Lint PHP | |
run: | | |
# Eventually add source/wp-content/plugins/support-helphub | |
composer run lint source/wp-content/themes/wporg-documentation-2022 source/wp-content/mu-plugins/site-documentation.php env |