Bump @typescript-eslint/parser from 8.18.1 to 8.18.2 (#1681) #4894
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: Typescript | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4.1.0 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
cache-dependency-path: package-lock.json | |
- name: Run npm ci (similar to install but made for CI) | |
run: npm ci | |
- name: Run Angular Build Prod | |
run: npm run build | |
- name: Run Angular Test | |
run: npm run test_ci | |
- name: Run Angular Lint | |
run: npm run lint |