fix(OUT-3480): prevent layout shift when inserting dynamic field in t… #5870
Workflow file for this run
This file contains hidden or 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: Lint | |
| on: push | |
| jobs: | |
| run-linters: | |
| name: Run linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20.18.0 | |
| cache: yarn | |
| cache-dependency-path: './yarn.lock' | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Patch stylish.js to not cause lint issues with Next 14.1.* | |
| run: yarn lint:fix-stylish | |
| - name: Run linters | |
| run: yarn lint:check && yarn prettier:check |