Skip to content

New core repository

New core repository #4

on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
continous-integration:
name: 'Continuous Integration'
uses: vuestorefront/integrations-github-workflows/.github/workflows/continuous-integration.yml@main
secrets: inherit
with:
enterprise: false
sonarcloud-sdk:
name: 'SonarCloud SDK'
needs: [continous-integration]
uses: vuestorefront/integrations-github-workflows/.github/workflows/sonarcloud.yml@main
secrets:
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
with:
project_key: 'vuestorefront_vue-storefront_sdk'
package_name: 'sdk'
exclusions: '*.config.js,src/index.ts,src/api-extractor-data.ts,**/types/**'
sonarcloud-cli:
name: 'SonarCloud CLI'
needs: [continous-integration]
uses: vuestorefront/integrations-github-workflows/.github/workflows/sonarcloud.yml@main
secrets:
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
with:
project_key: 'vuestorefront_vue-storefront_cli'
package_name: 'cli'
exclusions: '*.config.js,*.config.*.ts,src/index.ts,src/connector.ts,src/api-extractor-data.ts,**/types/**,'
sonarcloud-middleware:
name: 'SonarCloud Middleware'
needs: [continous-integration]
uses: vuestorefront/integrations-github-workflows/.github/workflows/sonarcloud.yml@main
secrets:
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
with:
project_key: 'vuestorefront_vue-storefront_middleware'
package_name: 'middleware'
exclusions: '*.config.js,*.config.*.ts,src/index.ts,src/connector.ts,src/api-extractor-data.ts,**/types/**,'