Fix GitHub CI run on windows
[e-mobility-charging-stations-simulator.git] / .github / workflows / ci.yml
index 3664bbb5b2806b97569c62cf3f63a9d34ae19232..b228e89a8e55e2beab6f9e9192a64be0f367572f 100644 (file)
@@ -2,15 +2,16 @@ name: CI
 on:
   push:
     branches:
-      - master
+      - main
   pull_request:
     types: [opened, synchronize, reopened]
 jobs:
   build:
-    runs-on: ubuntu-latest
+    runs-on: ${{ matrix.os }}
     strategy:
       matrix:
-        node: ['14.x', '16.x', '17.x']
+        os: [windows-latest, macos-latest, ubuntu-latest]
+        node: ['14.x', '16.x', '18.x']
     steps:
       - uses: actions/checkout@v3
         with:
@@ -29,9 +30,10 @@ jobs:
       - name: npm test
         run: npm test
       - name: npm run coverage
+        if: "matrix.os != 'windows-latest'"
         run: npm run coverage
       - name: SonarCloud Scan
-        if: "github.repository == 'jerome-benoit/charging-stations-simulator' && matrix.node == '16.x'"
+        if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'"
         uses: sonarsource/sonarcloud-github-action@master
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
@@ -42,7 +44,7 @@ jobs:
       - uses: actions/checkout@v3
       - name: Set up Docker Buildx
         id: buildx
-        uses: docker/setup-buildx-action@v1
+        uses: docker/setup-buildx-action@v2
       - name: Build docker image
         run: |
           cd docker