This commit is contained in:
Andras Schmelczer 2022-05-26 20:59:46 +02:00
parent edf164edf7
commit 47e8d8b33a
3 changed files with 159 additions and 0 deletions

26
.github/workflows/check_great_ai.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Check library
on:
workflow_dispatch:
push:
branches:
- dev
paths:
- "projects/great_ai/**"
- ".github/workflows/*"
jobs:
lint:
uses: ./.github/workflows/generic-lint-node.yml
with:
path_to_project: projects/great_ai
sonar:
needs: lint
uses: ./.github/workflows/generic-sonarqube-node.yml
with:
project_name: great_ai
path_to_project: projects/great_ai
secrets:
sonar_token: ${{ secrets.SONAR_TOKEN }}
sonar_host: ${{ secrets.SONAR_HOST_URL }}