fix: add stock status to product details endpoint #247
Workflow file for this run
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
name: VSF Continuous Integration | |
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 | |
node_version: '["16", "18"]' | |
sonarcloud-api-client: | |
name: 'SonarCloud API Client' | |
needs: [continous-integration] | |
uses: vuestorefront/integrations-github-workflows/.github/workflows/sonarcloud.yml@main | |
secrets: | |
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN_API_CLIENT }} | |
with: | |
project_key: 'vuestorefront_magento2_api-client' | |
package_name: 'api-client' | |
exclusions: '*.config.js,src/index.ts,src/api-extractor-data.ts,**/types/**' | |
sonarcloud-sdk: | |
name: 'SonarCloud SDK' | |
needs: [continous-integration] | |
uses: vuestorefront/integrations-github-workflows/.github/workflows/sonarcloud.yml@main | |
secrets: | |
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN_SDK }} | |
with: | |
project_key: 'vuestorefront_magento2_sdk' | |
package_name: 'sdk' | |
exclusions: '*.config.js,*.config.*.ts,src/index.ts,src/connector.ts,src/api-extractor-data.ts,**/types/**,' |