Skip to content

build(deps): bump @sentry/node from 8.13.0 to 8.14.0 in the sentry group #3398

build(deps): bump @sentry/node from 8.13.0 to 8.14.0 in the sentry group

build(deps): bump @sentry/node from 8.13.0 to 8.14.0 in the sentry group #3398

Workflow file for this run

name: Node CI
on:
push:
branches: master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm i -g npm
npm cache clean --force
npm ci
npm run build
npm test -- --forceExit #https://github.com/facebook/jest/issues/9982#issuecomment-758110298
env:
CI: true
- name: Check spelling
uses: crate-ci/typos@master