Skip to content

Commit

Permalink
chore: deploy astro app
Browse files Browse the repository at this point in the history
  • Loading branch information
bptodorova committed Nov 18, 2024
1 parent 9ee87ed commit 89dbd22
Show file tree
Hide file tree
Showing 7 changed files with 1,244 additions and 1,437 deletions.
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,24 @@ updates:
labels:
- "Dependencies"

- package-ecosystem: "npm"
directory: "/examples/kendo-react-e-commerce-astro-app"
schedule:
interval: "daily"
groups:
kendo-dependencies:
patterns:
- '@progress/kendo-*'
allow:
- dependency-name: '@progress/kendo-*'
commit-message:
prefix: "chore:"
reviewers:
- "telerik/kendo-react-devs"
- "telerik/kendo-react-support"
labels:
- "Dependencies"

- package-ecosystem: "npm"
directory: "/examples/kendo-react-build-a-sales-dashboard"
schedule:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
ecommerce-jewellery-store:
- 'examples/ecommerce-jewellery-store/**'
kendo-react-build-a-sales-dashboard:
- 'examples/kendo-react-build-a-sales-dashboard/**'
- 'examples/kendo-react-build-a-sales-dashboard/**'
kendo-react-e-commerce-astro-app:
- 'examples/kendo-react-e-commerce-astro-app/**'
kendo-react-file-manager:
- 'examples/kendo-react-file-manager/**'
kendo-react-finance-portfolio:
Expand Down Expand Up @@ -72,6 +74,13 @@ jobs:
npm ci
npm run build
- name: Build Ecommerce Astro app
working-directory: ./examples/kendo-react-e-commerce-astro-app
if: steps.changes.outputs.kendo-react-e-commerce-astro-app == 'true'
run: |
npm ci
npm run build
- name: Build A Sales Dashboard app
working-directory: ./examples/kendo-react-build-a-sales-dashboard
if: steps.changes.outputs.kendo-react-build-a-sales-dashboard == 'true'
Expand Down
4 changes: 4 additions & 0 deletions examples/kendo-react-e-commerce-astro-app/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ import react from '@astrojs/react';

export default defineConfig({
integrations: [react()],
base: `/kendo-react/kendo-react-e-commerce-astro-app/`,
build: {
outDir: 'build'
},
});
Loading

0 comments on commit 89dbd22

Please sign in to comment.