Update angular-cli monorepo to v21.2.7 #1075
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
| # You can enable the CI workflow by uncommenting the following lines. | |
| # This will compile, lint and test the code on every push to the main branch and for pull requests. | |
| # Currently, the CI will fail as there are linting errors in the code. | |
| name: Continuous Integration | |
| on: | |
| push: | |
| branches: [develop, main] | |
| pull_request: | |
| branches: [develop, main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '25' | |
| cache: 'gradle' | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Run Server Tests | |
| run: ./gradlew test -x webapp | |
| - name: Install Dependencies | |
| run: npm install | |
| # Temporarily disabled client tests until we switch to Vitest | |
| # - name: Run Client Tests | |
| # run: npm test |