fix: filters misbehaving on multi-toggle #157
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: source-update | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches-ignore: ['main', 'integration'] | |
| paths: | |
| - 'angular/src/**' | |
| - 'angular/pom.xml' | |
| jobs: | |
| buildtest: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.9.0' | |
| - name: Setup dependency caching | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('angular/package-lock.json') }} | |
| restore-keys: ${{ runner.os }}-node | |
| - name: Install dependencies | |
| run: cd angular && npm ci | |
| - name: Install Chromium dependencies | |
| run: sudo apt-get install -y libnss3 libxss1 libasound2 | |
| - name: Run unit tests | |
| run: cd angular && npm test |