fix(deps): update dependency @sentry/nextjs to v8.47.0 #4519
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: Build project and run linter | |
on: | |
push: | |
paths: | |
- '**/*.ts' | |
- '**/*.tsx' | |
- '**/*.js' | |
- '**/*.json' | |
pull_request: | |
paths: | |
- '**/*.ts' | |
- '**/*.tsx' | |
- '**/*.js' | |
- '**/*.json' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21.x' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run lint | |
run: pnpm run lint | |
- name: Run build | |
run: pnpm run build | |