feat(deps): update dependency @sentry/node to v7.75.1 #2801
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: Push CI | |
on: [push] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: yarn install --immutable --immutable-cache | |
- name: Checks | |
run: yarn run checks | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: yarn install --immutable --immutable-cache | |
- name: Build | |
run: yarn run build | |
- name: Check nothing was forgotten before commit | |
run: yarn run repository-check-dirty | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: yarn install --immutable --immutable-cache | |
- name: Prettier | |
run: yarn run lint:prettier | |
- name: Typescript | |
run: yarn run tsc | |
- name: Eslint | |
run: yarn run lint:eslint | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: yarn install --immutable --immutable-cache | |
- name: Test | |
run: yarn run test | |
if: matrix.node-version != 18 | |
- name: Generate Test Coverage | |
run: yarn run test:coverage | |
if: matrix.node-version == 18 | |
- name: Send results to codecov | |
uses: codecov/codecov-action@v3 | |
if: matrix.node-version == 18 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |