fix(ci): remove branch filters from workflow triggers + bump browser-… #9
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: Test Stats Plugin | |
| on: | |
| push: | |
| paths: | |
| - 'plugins/stats/**' | |
| - '.github/workflows/test-stats.yml' | |
| pull_request: | |
| paths: | |
| - 'plugins/stats/**' | |
| - '.github/workflows/test-stats.yml' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Run unit and integration tests | |
| working-directory: plugins/stats | |
| run: bun test |