feat: Add --file [files...]
command line option to lint command.
#12447
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- cspell6 | |
schedule: | |
- cron: "0 23 * * 0" | |
permissions: | |
contents: read | |
jobs: | |
analyze: | |
permissions: | |
actions: read # for github/codeql-action/init to get workflow details | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/analyze to upload SARIF results | |
name: Analyze | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
# Make sure it goes back far enough to find where the branch split from main | |
fetch-depth: 20 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: "javascript" | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
# cspell:ignore SARIF |