LP2102739 Staff banner H1 & ID for link checker #258
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 ng build --configuration production | |
| 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 build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| cache-dependency-path: Open-ILS/src/eg2/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci --ignore-scripts | |
| - name: build | |
| run: npx ng build --configuration production | |