Pin dependency @prezly/biome-config to 1.0.1 #5370
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 |