Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Introduce consolidated CI #6

Introduce consolidated CI

Introduce consolidated CI #6

Workflow file for this run

name: CI
on:
workflow_dispatch: {}
pull_request:
push:
branches:
- main
jobs:
lint:
name: Linter Analysis
uses: ./.github/workflows/lint.yml
unit-tests:
name: Unit Tests
uses: ./.github/workflows/unit-test.yml
sonar-scan:
name: SonarCloud Scan
uses: ./.github/workflows/sonar-scan.yml
needs: unit-tests
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

Check failure on line 24 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 24, Col: 20): Invalid secret, SONAR_TOKEN is not defined in the referenced workflow.
e2e-tests:
name: E2E Tests
uses: ./.github/workflows/e2e.yml