Skip to content

Commit

Permalink
Hopefully fixed CodeQL build for java, added typescript scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
retrodaredevil committed Mar 20, 2023
1 parent 6d65d89 commit dbfa67d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'java', 'python' ]
language: [ 'java', 'python', 'typescript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

Expand All @@ -50,6 +50,14 @@ jobs:
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

- if: ${{ matrix.language == 'java' }}
uses: actions/setup-node@v3
with:
node-version: 16
- if: ${{ matrix.language == 'java' }}
name: Install dependencies
run: (cd web && npm install)

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
Expand Down

0 comments on commit dbfa67d

Please sign in to comment.