Update dependency @sentry/nextjs to v9.47.1 #5639
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@v4 | |
| - 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 linter | |
| run: pnpm lint |