feat: support disabled options in buttons select format #66
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| run-tests: | |
| name: Run all tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Install deps & Playwright | |
| run: | | |
| npm ci | |
| npx playwright install --with-deps chromium | |
| - name: install examples deps | |
| run: | | |
| cd examples | |
| npm ci | |
| cd .. | |
| - name: Run tests | |
| run: npm test |