Bump node-forge from 1.3.1 to 1.4.0 in /Open-ILS/src/eg2 in the npm_and_yarn group across 1 directory #8
Workflow file for this run
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: Run Angular Unit Tests | |
| on: | |
| push: | |
| paths: | |
| - '.github/workflows/**' | |
| - 'Open-ILS/src/eg2/**' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/**' | |
| - 'Open-ILS/src/eg2/**' | |
| defaults: | |
| run: | |
| working-directory: Open-ILS/src/eg2 | |
| jobs: | |
| lint: | |
| name: Run Angular unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| - uses: browser-actions/setup-chrome@v1 | |
| - uses: browser-actions/setup-firefox@v1 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| cache-dependency-path: Open-ILS/src/eg2/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci --ignore-scripts && sudo apt-get install -y libxml-libxslt-perl | |
| - name: test | |
| run: npm run test |