Fix: properly handle forwarded refs and fix dropdown collection cleanup logic #347
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: CI | |
| on: | |
| pull_request | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: yarn install --frozen-lockfile | |
| - run: yarn build | |
| - run: yarn test | |
| storybook-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Run build | |
| run: | | |
| yarn install --frozen-lockfile | |
| cd storybook | |
| yarn install --frozen-lockfile | |
| yarn build-storybook | |
| storybook-lints: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Run lints | |
| run: | | |
| yarn install --frozen-lockfile | |
| cd storybook | |
| yarn install --frozen-lockfile | |
| yarn lint | |
| sphere: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: yarn install --frozen-lockfile | |
| - run: yarn build | |
| - run: yarn lint |