Bump @angular/core from 17.3.12 to 21.0.0 #115
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| name: Test Workflow | |
| jobs: | |
| test: | |
| permissions: | |
| contents: read # To checkout repository | |
| actions: read # To read workflow artifacts (if needed) | |
| checks: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' # Add caching for faster runs | |
| - name: Install dependencies | |
| run: npm ci --ignore-scripts && ./build-tools/search-for-shai-hulud.sh --full && npm rebuild esbuild | |
| - name: Run tests | |
| run: npm run test:ci |