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
32 changes: 26 additions & 6 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,37 @@ jobs:
run: yarn build:lib
- name: Build with VitePress
run: yarn docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist


# Test Job
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- name: Install dependencies
run: yarn install
- name: Build skuilder libraries
run: yarn build:lib
- name: Start dev server and run tests
run: |
yarn docs:dev &
SERVER_PID=$!
npx wait-on http://localhost:5173/vue-skuilder
yarn docs:test
kill $SERVER_PID

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
needs: [build, test]
runs-on: ubuntu-latest
name: Deploy
steps:
Expand Down
273 changes: 0 additions & 273 deletions agent/BACKPORT_CHECKLIST.md

This file was deleted.

Loading
Loading