Skip to content

fix(test): spread the real antd namespace into the module mocks #208

fix(test): spread the real antd namespace into the module mocks

fix(test): spread the real antd namespace into the module mocks #208

Workflow file for this run

name: github pages
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 12
steps:
- uses: actions/checkout@v7
- uses: oven-sh/setup-bun@v2
- name: Install
run: bun install --frozen-lockfile
- name: Check (typecheck, lint, test)
run: bun run ci
- name: Build
run: |
bun run build
cp CNAME dist/
cp .nojekyll dist/
- uses: actions/configure-pages@v6
- uses: actions/upload-pages-artifact@v5
with:
path: ./dist
deploy:
needs: build
runs-on: ubuntu-latest
timeout-minutes: 10
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5