Apply dependencies update
[e-mobility-charging-stations-simulator.git] / .github / workflows / ci.yml
1 name: CI
2 on:
3 push:
4 branches:
5 - main
6 pull_request:
7 types: [opened, synchronize, reopened]
8 jobs:
9 build:
10 runs-on: ${{ matrix.os }}
11 strategy:
12 matrix:
13 os: [windows-latest, macos-latest, ubuntu-latest]
14 node: ['16.x', '18.x']
15 steps:
16 - uses: actions/checkout@v3
17 with:
18 fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
19 - name: Use Node.js ${{ matrix.node }}
20 uses: actions/setup-node@v3
21 with:
22 node-version: ${{ matrix.node }}
23 - name: npm install
24 run: npm ci
25 - name: npm run lint
26 run: npm run lint
27 - name: npm run build
28 run: npm run build --if-present
29 - name: npm test
30 run: npm test
31 - name: npm run coverage
32 if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'"
33 run: npm run coverage
34 - name: SonarCloud Scan
35 if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'"
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 }}
40 build-dashboard:
41 runs-on: ${{ matrix.os }}
42 defaults:
43 run:
44 working-directory: src/ui/web
45 strategy:
46 matrix:
47 os: [windows-latest, macos-latest, ubuntu-latest]
48 node: ['16.x', '18.x']
49 steps:
50 - uses: actions/checkout@v3
51 with:
52 fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
53 - name: Use Node.js ${{ matrix.node }}
54 uses: actions/setup-node@v3
55 with:
56 node-version: ${{ matrix.node }}
57 - name: npm install
58 run: npm ci
59 - name: npm run lint
60 run: npm run lint
61 - name: npm run build
62 run: npm run build --if-present
63 - name: npm test
64 run: npm test
65 # - name: npm run coverage
66 # if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'"
67 # run: npm run coverage
68 # - name: SonarCloud Scan
69 # if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'"
70 # uses: sonarsource/sonarcloud-github-action@master
71 # env:
72 # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
73 # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
74 build-docker:
75 runs-on: ubuntu-latest
76 steps:
77 - uses: actions/checkout@v3
78 - name: Set up Docker Buildx
79 id: buildx
80 uses: docker/setup-buildx-action@v2
81 - name: Build docker image
82 run: |
83 cd docker
84 make SUBMODULES_INIT=false