Skip to content

Bump @sentry/browser from 5.24.2 to 8.33.0 #487

Bump @sentry/browser from 5.24.2 to 8.33.0

Bump @sentry/browser from 5.24.2 to 8.33.0 #487

Workflow file for this run

name: Check Lint
on:
pull_request:
branches: [dev]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v2
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Check lint
run: npm run lint