Skip to content

chore(deps): update dependency nx to v19.1.0 #216

chore(deps): update dependency nx to v19.1.0

chore(deps): update dependency nx to v19.1.0 #216

Workflow file for this run

name: ESLint
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install ESLint SARIF
run: pnpm add -wD @microsoft/eslint-formatter-sarif@3.0.0
- name: Stub packages type definitions
run: pnpm stub
- name: Run ESLint
run: pnpm eslint . --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif
continue-on-error: true
- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: eslint-results.sarif
wait-for-processing: true