Skip to content

Commit

Permalink
Merge branch 'main' into feat/pass-custom-header-guide
Browse files Browse the repository at this point in the history
  • Loading branch information
rohrig committed Oct 6, 2023
2 parents d0734b5 + a201002 commit f8756fd
Show file tree
Hide file tree
Showing 491 changed files with 25,508 additions and 31,233 deletions.
10 changes: 10 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "minor",
"ignore": []
}
17 changes: 0 additions & 17 deletions .editorconfig

This file was deleted.

3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
packages/cache/nuxt/plugin.js
packages/nuxt-module/plugins/i18n-cookies.js
packages/nuxt-module/plugins/logger.js
packages/cli/dist
packages/cli/dist
packages/middleware/__tests__/unit/test-data/*
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: "@vue-storefront/eslint-config-integrations",
};
138 changes: 0 additions & 138 deletions .eslintrc.json

This file was deleted.

27 changes: 0 additions & 27 deletions .github/labeler.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/semantic.yml

This file was deleted.

66 changes: 0 additions & 66 deletions .github/stale.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: VSF Continuous Delivery

on:
workflow_dispatch:
push:
branches:
- main

jobs:
release-packages:
name: "Release NPM Packages"
uses: vuestorefront/integrations-github-workflows/.github/workflows/continuous-delivery.yml@main
secrets: inherit
with:
enterprise: false
48 changes: 48 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
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/**,'
23 changes: 0 additions & 23 deletions .github/workflows/conventional-pr-name.yml

This file was deleted.

Loading

0 comments on commit f8756fd

Please sign in to comment.