Skip to content

chore(deps-dev): bump class-validator from 0.14.2 to 0.14.3 #210

chore(deps-dev): bump class-validator from 0.14.2 to 0.14.3

chore(deps-dev): bump class-validator from 0.14.2 to 0.14.3 #210

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
linters:
name: Linters
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Format check
run: yarn format:check
- name: Lint files
run: yarn lint
- name: Type check files
run: yarn tsc
- name: Run Trivy vulnerability scanner in fs mode
uses: aquasecurity/trivy-action@0.33.1
with:
scan-type: 'fs'
scan-ref: '.'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'