Skip to content

Update logo image source in README.md #386

Update logo image source in README.md

Update logo image source in README.md #386

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
sentry-version: [^8.0.0, ^9.0.0, ^10.0.0]
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Install Sentry packages
working-directory: ./packages/sentry-testkit
run: |
yarn add @sentry/browser@"${{ matrix.sentry-version }}" @sentry/node@"${{ matrix.sentry-version }}" @sentry/react@"${{ matrix.sentry-version }}" @sentry/types@"${{ matrix.sentry-version }}"
- name: Build
run: yarn workspace sentry-testkit build
- name: Test
run: yarn workspace sentry-testkit test