mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
* PW-6940: Update CI workflows Remove redundant reviewers and push event. Upgrade Node for coverage report. * PW-6940: Upgrade CodeQL * PW-6940: Update models * PW-6940: Add merchant level endpoints * Revert "PW-6940: Update models" This reverts commit 1044f2ab1b2ab90fd980588ba35ba5fb6b55d93e. * PW-6940: Linking services * PW-6940: Add documentation * PW-6940: Add unit tests * PW-6940: Fix delete methods return value Co-authored-by: Ángel Campos <angel.campos@adyen.com> Co-authored-by: Alexandros Moraitis <amoraitis@outlook.com>
22 lines
519 B
YAML
22 lines
519 B
YAML
name: "Sonarcloud Analysis"
|
|
|
|
on: ["pull_request"]
|
|
|
|
jobs:
|
|
sonarcloud-analysis:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
# Disabling shallow clone to improve relevancy of SonarCloud reporting
|
|
fetch-depth: 0
|
|
|
|
- name: SonarCloud integration
|
|
uses: sonarsource/sonarcloud-github-action@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|