mirror of
https://github.com/Airsonic-Pulse/airsonic-pulse.git
synced 2026-07-09 21:18:27 +00:00
ci(codeql): add install Node.js for javascript-typescript extractor
This commit is contained in:
parent
ed6b12245a
commit
cf4b98dc2d
1 changed files with 8 additions and 8 deletions
16
.github/workflows/codeql.yml
vendored
16
.github/workflows/codeql.yml
vendored
|
|
@ -3,16 +3,10 @@ name: "CodeQL Advanced"
|
|||
on:
|
||||
push:
|
||||
branches: [ 'main' ]
|
||||
paths-ignore:
|
||||
- "**.md"
|
||||
- "*.txt"
|
||||
- ".github/**"
|
||||
paths-ignore: [ "**.md", "*.txt", ".github/**" ]
|
||||
pull_request:
|
||||
branches: [ 'main' ]
|
||||
paths-ignore:
|
||||
- "**.md"
|
||||
- "*.txt"
|
||||
- ".github/**"
|
||||
paths-ignore: [ "**.md", "*.txt", ".github/**" ]
|
||||
schedule:
|
||||
- cron: '0 19 * * 6'
|
||||
workflow_dispatch:
|
||||
|
|
@ -42,6 +36,12 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Setup Node.js (required for javascript-typescript extractor)
|
||||
if: matrix.language == 'javascript-typescript'
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v4
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue