[Snyk] Upgrade @sentry/tracing from 7.114.0 to 7.119.0 #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Climate on PR | |
on: | |
pull_request: | |
jobs: | |
code_climate: | |
name: Code Climate code coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run Tests with coverage | |
run: npm run test:cov | |
- uses: paambaati/codeclimate-action@v5.0.0 | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_ID }} | |
with: | |
coverageLocations: coverage/lcov.info:lcov |