Ajusta lógica de preenchimento do input nativo html do BaseInput para… #72
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: 'Build docs 📚' | |
| permissions: | |
| contents: read | |
| on: [push] | |
| jobs: | |
| docs-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📚 Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: 🟢 Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: 📦 Install dependencies | |
| run: npm ci | |
| - name: 🔨 Build JSDocs JSON | |
| run: npm run build | |
| env: | |
| NODE_OPTIONS: "--experimental-specifier-resolution=node" | |
| - name: 📖 Build documentation with VitePress | |
| run: npm run docs:build | |
| env: | |
| NODE_OPTIONS: "--experimental-specifier-resolution=node" | |
| - name: ✅ Build completed successfully | |
| run: echo "Documentation build completed successfully!" |