chore(deps): update dependency @sentry/nextjs to v7.120.0 #3207
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
--- | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
# Only consider those paths to trigger the action | |
paths: | |
- 'packages/**' | |
- 'package.json' | |
- 'pnpm*' | |
- '.github/**' | |
- 'tsconfig.base.json' | |
name: 🔍 Continuous integration for packages | |
jobs: | |
integration: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: ['ubuntu-latest'] | |
node: ['18'] | |
env: | |
TURBO_API: 'http://127.0.0.1:9080' | |
TURBO_TEAM: 'next-starter-tpl' | |
TURBO_TOKEN: 'local_server_turbo_relaxed_token' | |
steps: | |
- name: 📦 Check out the codebase | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
# We need to fetch all the history for the "changed files" feature to work | |
fetch-depth: 0 | |
- name: ⚙️ Setup node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
registry-url: 'https://registry.npmjs.org/' | |
- name: 🚀 Setup TurboRepo local server | |
uses: felixmosh/turborepo-gh-artifacts@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
server-token: ${{ env.TURBO_TOKEN }} | |
- name: 📥 Monorepo install | |
uses: wayofdev/gh-actions/actions/pnpm-install@master | |
with: | |
enable-corepack: true | |
cache-node-modules: true | |
# see https://github.com/vercel/next.js/pull/27362 | |
- name: ♻️ Restore packages cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ github.workspace }}/.cache | |
${{ github.workspace }}/**/tsconfig.tsbuildinfo | |
key: packages-cache-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }} | |
# Typecheck packages that have changed + packages and apps that depends on them (--from & --since) | |
# That allows to see if we're introducing "surface" regressions (just the types) | |
- name: 📝 Typecheck | |
run: | | |
pnpm --filter "...[origin/master]" --changed-files-ignore-pattern="apps/*" run lint:types | |
# Lint packages that have changed (--include & --since) | |
- name: 🚨 Linter | |
run: | | |
pnpm --filter "...[origin/master]" --changed-files-ignore-pattern="apps/*" run lint |