Skip to content

Commit 3a3ebc1

Browse files
authored
docs db fix (#961)
- **add crsID <> dependencyName mapping** - **rm golang external test crs dep....** - **rm working docs**
2 parents 6f4c4b7 + 29f563e commit 3a3ebc1

File tree

14 files changed

+448
-1092
lines changed

14 files changed

+448
-1092
lines changed

.github/workflows/docs-deploy.yml

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,37 @@ jobs:
4747
run: yarn build:lib
4848
- name: Build with VitePress
4949
run: yarn docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
50-
- name: Upload artifact
51-
uses: actions/upload-pages-artifact@v3
52-
with:
53-
path: docs/.vitepress/dist
54-
50+
51+
# Test Job
52+
test:
53+
name: Test
54+
runs-on: ubuntu-latest
55+
steps:
56+
- name: Checkout
57+
uses: actions/checkout@v4
58+
- name: Setup Node
59+
uses: actions/setup-node@v4
60+
with:
61+
node-version: 22
62+
cache: yarn
63+
- name: Install dependencies
64+
run: yarn install
65+
- name: Build skuilder libraries
66+
run: yarn build:lib
67+
- name: Start dev server and run tests
68+
run: |
69+
yarn docs:dev &
70+
SERVER_PID=$!
71+
npx wait-on http://localhost:5173/vue-skuilder
72+
yarn docs:test
73+
kill $SERVER_PID
74+
5575
# Deployment job
5676
deploy:
5777
environment:
5878
name: github-pages
5979
url: ${{ steps.deployment.outputs.page_url }}
60-
needs: build
80+
needs: [build, test]
6181
runs-on: ubuntu-latest
6282
name: Deploy
6383
steps:

agent/BACKPORT_CHECKLIST.md

Lines changed: 0 additions & 273 deletions
This file was deleted.

0 commit comments

Comments
 (0)