fix(input): solve Input icon no longer shows Bulma hover/focus styles on left icon #146
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: Build Theme | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| - master | |
| pull_request: | |
| branches: | |
| - develop | |
| - main | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 24 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Install dependencies 📦 | |
| run: npm install | |
| - name: Run build lib 🛠️ | |
| run: npm run build |