Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.10.0 #6458

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.10.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.10.0 #6458

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
schedule:
- cron: 0 2 * * *
jobs:
server-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
node-version: 16
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test:silent
- name: Report coverage to Codacy
uses: codacy/codacy-coverage-reporter-action@master
if: >-
github.actor != 'dependabot[bot]' &&
github.actor != 'dependabot-preview[bot]' &&
github.event_name == 'push'
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage/lcov.info
- name: Report coverage to Codecov
uses: codecov/codecov-action@v3
if: >-
github.actor != 'dependabot[bot]' &&
github.actor != 'dependabot-preview[bot]'
with:
file: coverage/lcov.info
fail_ci_if_error: true