build(simulator): switch to pnpm
[e-mobility-charging-stations-simulator.git] / .github / workflows / ci.yml
index 1ebf798a946325a446cf92528d8e73de36237210..d687efa296be39169dfdb9953ba242fe9b4fd255 100644 (file)
@@ -12,7 +12,7 @@ jobs:
     strategy:
       matrix:
         os: [windows-latest, macos-latest, ubuntu-latest]
-        node: ['16.x', '18.x', '19.7,x']
+        node: ['16.x', '18.x', '19.x']
     steps:
       - uses: actions/checkout@v3
         with:
@@ -21,17 +21,19 @@ jobs:
         uses: actions/setup-node@v3
         with:
           node-version: ${{ matrix.node }}
-      - name: npm install
-        run: npm ci
-      - name: npm run lint
-        run: npm run lint
-      - name: npm run build
-        run: npm run build --if-present
-      - name: npm test
-        run: npm test
-      - name: npm run coverage
+      - name: corepack enable
+        run: corepack enable
+      - name: pnpm install
+        run: pnpm ci
+      - name: pnpm run lint
+        run: pnpm run lint
+      - name: pnpm run build
+        run: pnpm run build --if-present
+      - name: pnpm test
+        run: pnpm test
+      - name: pnpm run coverage
         if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x'"
-        run: npm run coverage
+        run: pnpm run coverage
       - name: SonarCloud Scan
         if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x'"
         uses: sonarsource/sonarcloud-github-action@master
@@ -46,7 +48,7 @@ jobs:
     strategy:
       matrix:
         os: [windows-latest, macos-latest, ubuntu-latest]
-        node: ['16.x', '18.x', '19.7.x']
+        node: ['16.x', '18.x', '19.x']
     steps:
       - uses: actions/checkout@v3
         with: