abcbd6e7d6dff3a4fade976ed994ce57542f3bc3
[e-mobility-charging-stations-simulator.git] / .github / workflows / ci.yml
1 name: CI
2 on:
3 push:
4 branches: [main]
5 pull_request:
6 types: [opened, synchronize, reopened]
7 merge_group:
8 branches: [main]
9 jobs:
10 check-secrets:
11 runs-on: ubuntu-latest
12 outputs:
13 sonar-token-exists: ${{ steps.sonar-token.outputs.defined }}
14 steps:
15 - name: Check for SonarCloud Token Availability
16 id: sonar-token
17 shell: bash
18 run: |
19 if [ "${{ secrets.SONAR_TOKEN }}" != '' ]; then
20 echo "defined=true" >> $GITHUB_OUTPUT;
21 else
22 echo "defined=false" >> $GITHUB_OUTPUT;
23 fi
24 build-simulator:
25 needs: [check-secrets]
26 strategy:
27 matrix:
28 os: [windows-latest, macos-latest, ubuntu-latest]
29 node: ['18.x', '20.x']
30 name: Build simulator with Node ${{ matrix.node }} on ${{ matrix.os }}
31 runs-on: ${{ matrix.os }}
32 steps:
33 - uses: actions/checkout@v4
34 with:
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 == '18.x' }}
38 uses: actions/dependency-review-action@v3
39 with:
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 == '18.x' }}
44 uses: actions/dependency-review-action@v3
45 - uses: pnpm/action-setup@v2
46 with:
47 version: 8
48 - name: Setup node ${{ matrix.node }}
49 uses: actions/setup-node@v3
50 with:
51 node-version: ${{ matrix.node }}
52 cache: 'pnpm'
53 - name: pnpm install
54 run: pnpm install --ignore-scripts
55 - name: pnpm lint
56 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
57 run: pnpm lint
58 - name: pnpm build
59 run: pnpm build
60 - name: pnpm test
61 run: pnpm test
62 - name: pnpm coverage
63 if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
64 run: pnpm coverage
65 - name: SonarCloud Scan
66 if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
67 uses: sonarsource/sonarcloud-github-action@v2.0.2
68 env:
69 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70 SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
71 build-dashboard:
72 needs: [check-secrets]
73 strategy:
74 matrix:
75 os: [windows-latest, macos-latest, ubuntu-latest]
76 node: ['16.x', '18.x', '20.x']
77 name: Build dashboard with Node ${{ matrix.node }} on ${{ matrix.os }}
78 runs-on: ${{ matrix.os }}
79 defaults:
80 run:
81 working-directory: ui/web
82 steps:
83 - uses: actions/checkout@v4
84 with:
85 fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
86 - name: Dependency Review
87 if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
88 uses: actions/dependency-review-action@v3
89 with:
90 base-ref: ${{ github.ref_name }}
91 head-ref: ${{ github.sha }}
92 - name: Pull Request Dependency Review
93 if: ${{ github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
94 uses: actions/dependency-review-action@v3
95 - uses: pnpm/action-setup@v2
96 with:
97 version: 8
98 - name: Setup node ${{ matrix.node }}
99 uses: actions/setup-node@v3
100 with:
101 node-version: ${{ matrix.node }}
102 cache: 'pnpm'
103 - name: pnpm install
104 run: pnpm install --ignore-scripts
105 - name: pnpm lint
106 if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
107 run: pnpm lint
108 - name: pnpm build
109 run: pnpm build
110 - name: pnpm test
111 run: pnpm test
112 - name: pnpm coverage
113 if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
114 run: pnpm coverage
115 - name: SonarCloud Scan
116 if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
117 uses: sonarsource/sonarcloud-github-action@v2.0.2
118 with:
119 projectBaseDir: ui/web
120 env:
121 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
122 SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
123 build-docker-image:
124 runs-on: ubuntu-latest
125 name: Build docker image
126 steps:
127 - uses: actions/checkout@v4
128 - name: Setup Docker Buildx
129 id: buildx
130 uses: docker/setup-buildx-action@v2
131 - name: Build docker image
132 run: |
133 cd docker
134 make SUBMODULES_INIT=false