6 types: [opened, synchronize, reopened]
11 runs-on: ubuntu-latest
13 sonar-token-exists: ${{ steps.sonar-token.outputs.defined }}
15 - name: Check for SonarCloud Token Availability
19 if [ "${{ secrets.SONAR_TOKEN }}" != '' ]; then
20 echo "defined=true" >> $GITHUB_OUTPUT;
22 echo "defined=false" >> $GITHUB_OUTPUT;
25 needs: [check-secrets]
28 os: [windows-latest, macos-latest, ubuntu-latest]
29 node: ['20.x', 'latest']
30 name: Build simulator with Node ${{ matrix.node }} on ${{ matrix.os }}
31 runs-on: ${{ matrix.os }}
33 - uses: actions/checkout@v4
35 fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
36 - name: Dependency Review
37 if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
38 uses: actions/dependency-review-action@v4
40 base-ref: ${{ github.ref_name }}
41 head-ref: ${{ github.sha }}
42 - name: Pull Request Dependency Review
43 if: ${{ github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
44 uses: actions/dependency-review-action@v4
45 - uses: pnpm/action-setup@v2
48 - name: Setup node ${{ matrix.node }}
49 uses: actions/setup-node@v4
51 node-version: ${{ matrix.node }}
54 run: pnpm install --ignore-scripts --frozen-lockfile
56 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
57 run: pnpm audit --prod
59 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
66 if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
68 - name: SonarCloud Scan
69 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' }}
70 uses: sonarsource/sonarcloud-github-action@v2.1.1
72 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73 SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
75 needs: [check-secrets]
78 os: [windows-latest, macos-latest, ubuntu-latest]
79 node: ['18.x', '20.x', 'latest']
80 name: Build dashboard with Node ${{ matrix.node }} on ${{ matrix.os }}
81 runs-on: ${{ matrix.os }}
84 working-directory: ui/web
86 - uses: actions/checkout@v4
88 fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
89 - name: Dependency Review
90 if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
91 uses: actions/dependency-review-action@v4
93 base-ref: ${{ github.ref_name }}
94 head-ref: ${{ github.sha }}
95 - name: Pull Request Dependency Review
96 if: ${{ github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
97 uses: actions/dependency-review-action@v4
98 - uses: pnpm/action-setup@v2
101 - name: Setup node ${{ matrix.node }}
102 uses: actions/setup-node@v4
104 node-version: ${{ matrix.node }}
107 run: pnpm install --ignore-scripts --frozen-lockfile
109 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
110 run: pnpm audit --prod
112 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
118 - name: pnpm coverage
119 if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }}
121 - name: SonarCloud Scan
122 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' }}
123 uses: sonarsource/sonarcloud-github-action@v2.1.1
125 projectBaseDir: ui/web
127 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
128 SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
130 runs-on: ubuntu-latest
131 name: Build docker image
133 - uses: actions/checkout@v4
134 - name: Setup Docker Buildx
136 uses: docker/setup-buildx-action@v3
137 - name: Build docker image
140 make SUBMODULES_INIT=false