Skip to content

Bump typedoc-plugin-mdn-links from 3.2.5 to 3.2.7 #225

Bump typedoc-plugin-mdn-links from 3.2.5 to 3.2.7

Bump typedoc-plugin-mdn-links from 3.2.5 to 3.2.7 #225

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# ESLint is a tool for identifying and reporting on patterns
# found in ECMAScript/JavaScript code.
# More details at https://github.com/eslint/eslint
# and https://eslint.org
name: ESLint
on:
pull_request:
types: [opened, reopened, edited, ready_for_review, review_requested, auto_merge_enabled]
paths-ignore: [ .github, README.md, LICENSE.md ]
push:
paths-ignore: [ .github, README.md, LICENSE.md ]
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
security-events: write
# contents: read
# actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install ESLint
run: npm install eslint @microsoft/eslint-formatter-sarif
- name: Run ESLint
run: npx eslint .
--config .eslintrc.cjs
--ext .js,.jsx,.ts,.tsx
--format @microsoft/eslint-formatter-sarif
--output-file eslint-results.sarif
continue-on-error: false
- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: eslint-results.sarif
wait-for-processing: true