generated from SAP/repository-template
-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: cleanup package.json scripts
Signed-off-by: Jérôme Benoit <[email protected]>
- Loading branch information
Jérôme Benoit
committed
Sep 29, 2023
1 parent
5226ae7
commit cd49fae
Showing
2 changed files
with
10 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,13 +34,13 @@ jobs: | |
with: | ||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
- name: Dependency Review | ||
if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
uses: actions/dependency-review-action@v3 | ||
with: | ||
base-ref: ${{ github.ref_name }} | ||
head-ref: ${{ github.sha }} | ||
- name: Pull Request Dependency Review | ||
if: ${{ github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
uses: actions/dependency-review-action@v3 | ||
- uses: pnpm/action-setup@v2 | ||
with: | ||
|
@@ -53,17 +53,17 @@ jobs: | |
- name: pnpm install | ||
run: pnpm install --ignore-scripts | ||
- name: pnpm lint | ||
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
run: pnpm lint | ||
- name: pnpm build | ||
run: pnpm build | ||
- name: pnpm test | ||
run: pnpm test | ||
- name: pnpm coverage | ||
if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
run: pnpm coverage | ||
- name: SonarCloud Scan | ||
if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
uses: sonarsource/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -84,13 +84,13 @@ jobs: | |
with: | ||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
- name: Dependency Review | ||
if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
uses: actions/dependency-review-action@v3 | ||
with: | ||
base-ref: ${{ github.ref_name }} | ||
head-ref: ${{ github.sha }} | ||
- name: Pull Request Dependency Review | ||
if: ${{ github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
uses: actions/dependency-review-action@v3 | ||
- uses: pnpm/action-setup@v2 | ||
with: | ||
|
@@ -103,17 +103,17 @@ jobs: | |
- name: pnpm install | ||
run: pnpm install --ignore-scripts | ||
- name: pnpm lint | ||
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
run: pnpm lint | ||
- name: pnpm build | ||
run: pnpm build | ||
- name: pnpm test | ||
run: pnpm test | ||
- name: pnpm coverage | ||
if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
run: pnpm coverage | ||
- name: SonarCloud Scan | ||
if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} | ||
if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} | ||
uses: sonarsource/[email protected] | ||
with: | ||
projectBaseDir: ui/web | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters