chore(deps): bump fumadocs-core from 16.4.7 to 16.4.9 #33
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test ObjectDocs Lifecycle | |
| on: | |
| push: | |
| branches: [ main, develop ] | |
| pull_request: | |
| branches: [ main, develop ] | |
| workflow_dispatch: | |
| jobs: | |
| test-quick: | |
| name: Quick Build Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: '10.x' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run quick build test | |
| run: pnpm test:quick | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: quick-test-results | |
| path: /tmp/objectdocs-*.log | |
| retention-days: 7 | |
| if-no-files-found: ignore | |
| test-full: | |
| name: Full Lifecycle Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: '10.x' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run full lifecycle test | |
| run: pnpm test:site | |
| - name: Upload server logs | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: full-test-results | |
| path: /tmp/objectdocs-*.log | |
| retention-days: 7 | |
| if-no-files-found: ignore |