Skip to content

Bump @sentry/browser from 8.30.0 to 8.33.0 #4804

Bump @sentry/browser from 8.30.0 to 8.33.0

Bump @sentry/browser from 8.30.0 to 8.33.0 #4804

Workflow file for this run

name: Build PR
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
env:
IMAGE: ghcr.io/navikt/familie-ba-sak-frontend:${{ github.sha }}
VERSION: familie-ba-sak-frontend:${{ github.sha }}
jobs:
eslint:
name: 🛠️ ESLint
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🔧💻 Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
registry-url: "https://npm.pkg.github.com"
- name: 🧶📥 Yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: yarn --prefer-offline --frozen-lockfile
- name: 🔬 Kjør sjekk med esLint
run: yarn lint
lint:
name: ✨ Prettier
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🔧💻 Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
registry-url: "https://npm.pkg.github.com"
- name: 🧶📥 Yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: yarn --prefer-offline --frozen-lockfile
- name: 🔬 Kjør sjekk med prettier
run: yarn prettier-check
typecheck:
name: ʦ TypeScript
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🔧💻 Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
registry-url: "https://npm.pkg.github.com"
- name: 🧶📥 Yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: yarn --prefer-offline --frozen-lockfile
- name: 🔎 Type check
run: yarn typecheck
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🔧💻 Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
registry-url: "https://npm.pkg.github.com"
- name: 🧶📥 Yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: yarn --prefer-offline --frozen-lockfile
- name: 🧶🏗️ Yarn build
run: |
yarn build
yarn test
yarn run cypress