Rename the project to SAP branding approved name
[e-mobility-charging-stations-simulator.git] / .github / workflows / ci.yml
CommitLineData
a9c0de45 1name: CI
69d993b0
JB
2on:
3 push:
4 branches:
9c1b1b03 5 - main
c4f11906 6 pull_request:
613dc1b7 7 types: [opened, synchronize, reopened]
69d993b0
JB
8jobs:
9 build:
c1eafbfc 10 runs-on: ${{ matrix.os }}
69d993b0
JB
11 strategy:
12 matrix:
c1eafbfc 13 os: [windows-latest, macos-latest, ubuntu-latest]
99942e4f 14 node: ['14.x', '16.x', '18.x']
69d993b0 15 steps:
0642c3d2 16 - uses: actions/checkout@v3
e7aeea18
JB
17 with:
18 fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
0642c3d2
JB
19 - name: Use Node.js ${{ matrix.node }}
20 uses: actions/setup-node@v3
e7aeea18 21 with:
0642c3d2 22 node-version: ${{ matrix.node }}
e7aeea18
JB
23 - name: npm install
24 run: npm ci
25 - name: npm run lint
26 run: npm run lint
27 continue-on-error: true
28 - name: npm run build
29 run: npm run build
30 - name: npm test
31 run: npm test
32 - name: npm run coverage
33 run: npm run coverage
34 - name: SonarCloud Scan
7f774a55 35 if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'"
e7aeea18
JB
36 uses: sonarsource/sonarcloud-github-action@master
37 env:
38 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
39 SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
a9c0de45 40 build-docker:
c168e7ad
JB
41 runs-on: ubuntu-latest
42 steps:
0642c3d2 43 - uses: actions/checkout@v3
e7aeea18
JB
44 - name: Set up Docker Buildx
45 id: buildx
c1eafbfc 46 uses: docker/setup-buildx-action@v2
e7aeea18
JB
47 - name: Build docker image
48 run: |
49 cd docker
50 make SUBMODULES_INIT=false