Skip to content

Bump @sentry/node from 7.112.2 to 7.113.0 #1370

Bump @sentry/node from 7.112.2 to 7.113.0

Bump @sentry/node from 7.112.2 to 7.113.0 #1370

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
linter:
name: "Code Style Standard"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Package
run: npm run package
windows-build:
name: Windows Build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Package
run: npm run package
test:
name: Tests
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Setup Xvfb (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
nohup Xvfb :99 -screen 0 1024x768x16 > /dev/null 2>&1 &
echo "XVFB_PID=$!" >> "$GITHUB_ENV"
echo "DISPLAY=:99.0" >> "$GITHUB_ENV"
while [ ! -e /tmp/.X11-unix/X99 ]; do sleep 0.1; done
- name: Integration Tests
run: npm run test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Cleanup Xvfb (Linux)
if: matrix.os == 'ubuntu-latest'
run: kill $XVFB_PID