feat(FilterCheckboxDropdown): create accessible filter checkbox dropdown component #3854
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - main-next | |
| pull_request: | |
| branches: | |
| - main | |
| - main-next | |
| env: | |
| NODE_VERSION: 20.13.0 | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: Load cached node_modules | |
| uses: actions/cache@v3 | |
| with: | |
| path: node_modules | |
| key: node_modules-${{ hashFiles('yarn.lock') }} | |
| - run: yarn | |
| - run: yarn test | |
| - name: Upload code coverage | |
| uses: codecov/codecov-action@v2 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: false | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: Load cached node_modules | |
| uses: actions/cache@v3 | |
| with: | |
| path: node_modules | |
| key: node_modules-${{ hashFiles('yarn.lock') }} | |
| - run: yarn | |
| - run: yarn lint |