mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
28 lines
512 B
YAML
28 lines
512 B
YAML
|
name: 'Analyze'
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [develop]
|
||
|
pull_request:
|
||
|
branches: [master, develop]
|
||
|
|
||
|
jobs:
|
||
|
analyze:
|
||
|
runs-on: 'ubuntu-latest'
|
||
|
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
language: ['javascript']
|
||
|
|
||
|
steps:
|
||
|
- uses: 'actions/checkout@v2.4.0'
|
||
|
|
||
|
- name: 'Initialize CodeQL'
|
||
|
uses: 'github/codeql-action/init@v1'
|
||
|
with:
|
||
|
languages: ${{ matrix.language }}
|
||
|
|
||
|
- name: 'Perform CodeQL Analysis'
|
||
|
uses: 'github/codeql-action/analyze@v1'
|