Update dependency @sentry/node to v10.45.0 #95
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
| # Make sure to enable 'Require status checks to pass before merging' on the branch protection, | |
| # and to select the 'prettier_check' action. | |
| name: Prettier Check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| prettier_check: | |
| if: github.actor != 'renovate[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6 | |
| with: | |
| node-version: '24' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Run Prettier Check | |
| run: npx prettier --check . |