docs: Add comprehensive release documentation #3
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_call: | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build project | |
| run: npm run build | |
| - name: Run linter | |
| run: npm run lint | |
| - name: Run tests | |
| run: npm run test | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: dist | |
| path: | | |
| dist/ | |
| index.html | |
| favicon.svg | |
| Demo/ | |
| retention-days: 7 | |
| - name: Check build output | |
| run: | | |
| echo "Checking build output..." | |
| ls -la dist/ | |
| test -f dist/output.css || exit 1 | |
| test -d dist/ || exit 1 | |
| echo "Build verification successful!" |