fix: 🐛 fix grouping selector not closing on outside click #925
Workflow file for this run
This file contains 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: Dependabot Check | |
on: pull_request | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install Node Dependencies | |
run: npm install | |
- name: Build packages | |
run: npx nx affected:build --base=remotes/origin/main | |
- name: Test packages | |
run: npx nx affected:test --base=remotes/origin/main |