Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps

- name: Build
run: npm run build
Expand All @@ -44,10 +44,10 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps

- name: Run npm audit
run: npm audit --audit-level=moderate
run: npm audit --audit-level=high

- name: Run ESLint
run: npm run lint
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps

- name: Run unit tests with coverage
run: npm run test:unit -- --coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps

- name: Build
run: npm run build
Expand Down
Loading
Loading