[ESLint] updating the nav and nav link padding/margin values to use a slot/fill css variable system. Also using the frontend styles as a base for the editor styles. Also fixing an issue in the editor with cetnered navs. #1289
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: ESLint | |
run-name: '[ESLint] ${{ github.event.head_commit.message }}' | |
on: push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: npm ci --ignore-scripts --legacy-peer-deps | |
- run: npm rebuild && npm run prepare --if-present | |
- name: Run ESLint | |
run: npm run lint-js |