1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/.github/workflows/analyze.yml

28 lines
512 B
YAML
Raw Normal View History

2022-02-23 19:46:44 +01:00
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:
2023-05-13 19:09:54 +02:00
- uses: 'actions/checkout@v3.5.2'
2022-02-23 19:46:44 +01:00
- name: 'Initialize CodeQL'
2022-10-03 20:52:15 +02:00
uses: 'github/codeql-action/init@v2'
2022-02-23 19:46:44 +01:00
with:
languages: ${{ matrix.language }}
- name: 'Perform CodeQL Analysis'
2022-10-03 20:52:15 +02:00
uses: 'github/codeql-action/analyze@v2'