Skip to content

build(deps): bump @sentry/nextjs from 7.80.1 to 7.81.0 #917

build(deps): bump @sentry/nextjs from 7.80.1 to 7.81.0

build(deps): bump @sentry/nextjs from 7.80.1 to 7.81.0 #917

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: .node-version
- run: npm ci
- run: npm run build
- run: npm test
- name: Fetch dependabot metadata
if: ${{github.actor == 'dependabot[bot]'}}
id: metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs for minor and patch updates
if: ${{github.actor == 'dependabot[bot]' && steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}