[Snyk] Upgrade @angular/animations from 18.1.0 to 18.2.3 #35
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: CodeChecks | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Get Codebase | |
uses: actions/checkout@v3 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
- name: Install Modules | |
run: npm ci | |
- name: Run ESLint | |
run: npm run lint:check | |
format: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Get Codebase | |
uses: actions/checkout@v3 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
- name: Install Modules | |
run: npm ci | |
- name: Run Prettier Check | |
run: npm run format:check | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Get Codebase | |
uses: actions/checkout@v3 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
- name: Install Modules | |
run: npm ci | |
- name: Build limble-tree | |
run: npm run ng build -- limble-tree | |
- name: Test limble-tree | |
run: npm run ng test -- limble-tree --no-watch --no-progress --browsers=ChromeHeadless | |
- name: Test sandbox | |
run: npm run ng test -- sandbox --no-watch --no-progress --browsers=ChromeHeadless |