chore(deps-dev): bump @angular/compiler-cli from 18.2.2 to 18.2.8 #1587
Workflow file for this run
This file contains 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: Pull Request workflow | |
on: | |
pull_request: | |
branches: | |
# Only accept PRs targeting the main branch | |
- main | |
jobs: | |
test: | |
name: App linting/testing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup NodeJS LTS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
id: node_modules_cache | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }}- | |
${{ runner.os }}-node_modules- | |
${{ runner.os }}- | |
- name: Install dependencies | |
# Skip this step if a cache hit occurs on the key | |
if: steps.node_modules_cache.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Lint application | |
run: npm run lint | |
- name: Test application | |
run: npm run action:test | |
- name: Upload Codecov coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage/rss-reader/lcov.info |