feat(components): create the post-breadcrumb-item #8194
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 |