Skip to content

build(deps): bump @sentry/tracing from 6.19.7 to 7.92.0 #2636

build(deps): bump @sentry/tracing from 6.19.7 to 7.92.0

build(deps): bump @sentry/tracing from 6.19.7 to 7.92.0 #2636

Workflow file for this run

name: lint, build, and test
on: push
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v2
with:
node-version: 16
- name: setup dependencies
run: npm i -g eslint prettier && npm i
- name: lint
run: npm run lint:ts
- name: check formatting
run: npm run prettier
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v2
with:
node-version: 16
- name: setup dependencies
run: npm i
- name: build
run: npm run build
test:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v2
with:
node-version: 16
- name: setup dependencies
run: npm i
- name: run tests
run: npm run test