fix(styles): fixed HCM hover and focus styles for post-avatar
component in anchor and button contexts
#9707
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
### | |
# | |
# runs all tests in packages changed since main | |
# | |
### | |
name: Lint files | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup | |
uses: ./.github/actions/setup-pnpm | |
- name: Install dependencies of changed packages | |
run: pnpm install | |
# Test all changed packages and their dependents | |
# https://pnpm.io/filtering#--filter-since | |
- name: Lint packages | |
run: pnpm -r lint |