fix: hide quickfilters where the whole text isnt visible #210
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: Publish changed | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
environment: npm | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: PNPM setup | |
uses: ./.github/actions/pnpm-setup | |
- name: Build monorepo | |
run: pnpm build | |
- name: Publish NPM | |
run: | | |
pnpm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" | |
pnpm shipit --no-git-checks |