refactor(selection): unify toolbar plumbing across 5 viewers + fix Di… #121
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 | |
| # Skip when only website/, docs, or markdown files change — those are | |
| # either deployed by website-deploy.yml or have no impact on the package. | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - "website/**" | |
| - "docs/**" | |
| - "**/*.md" | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - "website/**" | |
| - "docs/**" | |
| - "**/*.md" | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run build |