Skip to content

Make the theme of the docs website the same as my main website #59

Make the theme of the docs website the same as my main website

Make the theme of the docs website the same as my main website #59

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run test
deploy:
name: Deploy Documentation
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm --filter "./components/**" build
- run: pnpm --filter wc-docs run build
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build