Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy Documentation
name: Deploy Examples

on:
push:
Expand All @@ -22,7 +22,7 @@ concurrency:

jobs:
build:
name: Build Documentation
name: Build Examples
runs-on: ubuntu-latest

steps:
Expand All @@ -43,24 +43,22 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build package
- name: Build main package
run: pnpm build

- name: Build documentation
run: pnpm run docs
env:
CI: true
- name: Build test app examples
run: pnpm test:build

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './packages/vreo/docs'
path: './packages/test-app/dist'

deploy:
name: Deploy to GitHub Pages
name: Deploy Examples to GitHub Pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down
1 change: 1 addition & 0 deletions packages/vreo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
"vite": "^6.3.5"
},
"dependencies": {
"@babel/runtime": "^7.24.3",
"classnames": "^2.3.1",
"mobx": "^6.3.7",
"mobx-react": "^7.2.1"
Expand Down
Loading
Loading