Skip to content

feat: enable parsing TypeScript sources #115

feat: enable parsing TypeScript sources

feat: enable parsing TypeScript sources #115

Workflow file for this run

name: ESLint
on: push
permissions: read-all
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # tag=v4.1.4
- name: Setup node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # tag=v4.0.2
with:
node-version: 18
- name: Run ESLint
run: |
npm ci
npm run lint-ci
continue-on-error: true
- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@d39d31e687223d841ef683f52467bd88e9b21c14 # tag=v3.25.3
with:
sarif_file: build/eslint-results.sarif
wait-for-processing: true