Skip to content

chore(deps): update typescript-eslint monorepo to v8.17.0 #3170

chore(deps): update typescript-eslint monorepo to v8.17.0

chore(deps): update typescript-eslint monorepo to v8.17.0 #3170

name: Quality checks
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
sonarcloud:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install runtime
uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'npm'
- name: Install
run: npm ci
- name: Checks
run: npm run type-check
- name: Unit tests
run: npm run coverage
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}