Skip to content

fix(deps): update sentry sdk #2228

fix(deps): update sentry sdk

fix(deps): update sentry sdk #2228

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Lint and test
runs-on: ubuntu-latest
env:
CI: true
strategy:
fail-fast: false
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: yarn install
run: yarn
- name: Unittesting
run: yarn test
- name: Linting
if: ${{ matrix.node-version == '18.x' }}
run: yarn lint
- name: Coverage
run: yarn coverage