X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=.github%2Fworkflows%2Fci.yml;h=d687efa296be39169dfdb9953ba242fe9b4fd255;hb=881f450cfd904e73bb5953e4057f6d071bdf60f7;hp=1ebf798a946325a446cf92528d8e73de36237210;hpb=bb1e5fcb684566b96a8c2547e99565ab009cfc89;p=e-mobility-charging-stations-simulator.git diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ebf798a..d687efa2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: