Update dependency next to v15.4.7 [SECURITY] #5302
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 Linter checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v3 | |
| - name: Setup environment | |
| uses: prezly/setup-github-actions@v1 | |
| with: | |
| pnpm: 9.15.4 | |
| node: 20 | |
| - name: Install Node.js dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run Lint | |
| run: pnpm lint |