X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.github%2Fworkflows%2Fci.yml;h=c7e5591e87392e70d14355a9a34505941f7ddb99;hb=HEAD;hp=401dbfa8ed6d3a32f827db4707da24fe65e7c667;hpb=c92e05e36a53b778508850b1cc36e1bb1da9b41a;p=e-mobility-charging-stations-simulator.git diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 401dbfa8..870993ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,49 +1,159 @@ name: CI on: push: - branches: - - master + branches: [main] pull_request: types: [opened, synchronize, reopened] + merge_group: + branches: [main] jobs: - build: + check-secrets: runs-on: ubuntu-latest + outputs: + sonar-token-exists: ${{ steps.sonar-token.outputs.defined }} + steps: + - name: Check for SonarCloud Token Availability + id: sonar-token + shell: bash + run: | + if [ "${{ secrets.SONAR_TOKEN }}" != '' ]; then + echo "defined=true" >> $GITHUB_OUTPUT; + else + echo "defined=false" >> $GITHUB_OUTPUT; + fi + build-ocpp-server: + strategy: + matrix: + python: + - 3.12 + name: Build OCPP mock server with Python ${{ matrix.python }} + runs-on: ubuntu-latest + defaults: + run: + working-directory: tests/ocpp-server + steps: + - uses: actions/checkout@v4 + - name: Install Poetry + run: pipx install poetry + - name: Setup Python ${{ matrix.python }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python }} + cache: poetry + - name: Install Dependencies + run: poetry install --no-root + - name: Lint + run: poetry run task lint + build-simulator: + needs: [check-secrets] + strategy: + matrix: + os: [windows-latest, macos-latest, ubuntu-latest] + node: ['20.x', 'latest'] + name: Build simulator with Node ${{ matrix.node }} on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Dependency Review + if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + uses: actions/dependency-review-action@v4 + with: + base-ref: ${{ github.ref_name }} + head-ref: ${{ github.sha }} + - name: Pull Request Dependency Review + if: ${{ github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + uses: actions/dependency-review-action@v4 + - uses: pnpm/action-setup@v4 + - name: Setup node ${{ matrix.node }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node }} + cache: 'pnpm' + - name: pnpm install + run: pnpm install --ignore-scripts --frozen-lockfile + - name: pnpm audit + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + run: pnpm audit --prod + - name: pnpm lint + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + run: pnpm lint + - name: pnpm build + run: pnpm build + - name: pnpm test + run: pnpm test + - name: pnpm coverage + if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + run: pnpm coverage + - name: SonarCloud Scan + if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + uses: sonarsource/sonarcloud-github-action@v2.3.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + build-dashboard: + needs: [check-secrets] strategy: matrix: - node-version: [14.x, 16.x] + os: [windows-latest, macos-latest, ubuntu-latest] + node: ['18.x', '20.x', 'latest'] + name: Build dashboard with Node ${{ matrix.node }} on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + defaults: + run: + working-directory: ui/web steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - - name: npm install - run: npm ci - - name: npm run lint - run: npm run lint - continue-on-error: true - - name: npm run build - run: npm run build - - name: npm test - run: npm test - - name: npm run coverage - run: npm run coverage - - name: SonarCloud Scan - if: "github.repository == 'jerome-benoit/charging-stations-simulator' && matrix.node-version == '14.x'" - uses: sonarsource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - build-docker: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Dependency Review + if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + uses: actions/dependency-review-action@v4 + with: + base-ref: ${{ github.ref_name }} + head-ref: ${{ github.sha }} + - name: Pull Request Dependency Review + if: ${{ github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + uses: actions/dependency-review-action@v4 + - uses: pnpm/action-setup@v4 + - name: Setup node ${{ matrix.node }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node }} + cache: 'pnpm' + - name: pnpm install + run: pnpm install --ignore-scripts --frozen-lockfile + - name: pnpm audit + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + run: pnpm audit --prod + - name: pnpm lint + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + run: pnpm lint + - name: pnpm build + run: pnpm build + - name: pnpm test + run: pnpm test + - name: pnpm coverage + if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + run: pnpm coverage + - name: SonarCloud Scan + if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + uses: sonarsource/sonarcloud-github-action@v2.3.0 + with: + projectBaseDir: ui/web + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + build-docker-image: runs-on: ubuntu-latest + name: Build docker image steps: - - uses: actions/checkout@v2 - - name: Set up Docker Buildx - id: buildx - uses: docker/setup-buildx-action@v1 - - name: Build docker image - run: | - cd docker - make SUBMODULES_INIT=false + - uses: actions/checkout@v4 + - name: Setup Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v3 + - name: Build docker image + run: | + cd docker + make SUBMODULES_INIT=false