build(deps): bump @sentry/browser from 5.15.0 to 8.36.0 #1770
Workflow file for this run
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
name: Test, lint, performance checks | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
name: Test, lint, performance checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Restore node_modules from cache | |
uses: actions/cache@v2 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node-modules- | |
- name: Install project | |
run: yarn | |
- name: Run linter | |
run: yarn lint | |
- name: Run css linter | |
run: yarn lint-style | |
- name: Type check | |
run: yarn type-check | |
- name: Unit test | |
run: yarn test:coverage | |
- name: Check bundle size | |
run: yarn build && ./node_modules/.bin/bundlesize |