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
4 changes: 2 additions & 2 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
cache: npm

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

- name: Check openapi.json is in sync with TypeScript spec source
run: npm run openapi:check
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
cache: npm

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

- name: Run backend tests with coverage
id: test
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
cache: npm

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

- name: Validate migrations
run: npm run migrations:validate
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
cache: npm

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

- name: Run migration rollback tests
run: npm run test:migrations
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
cache: npm

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

- name: Run tests with coverage
run: npm run test:ci
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
cache: npm

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

- name: Run npm audit
run: npm run audit:high
Expand All @@ -162,7 +162,7 @@ jobs:
cache: npm

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

- name: Build Storybook
run: npm run storybook:ci
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
cache: npm

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

- name: Apply migrations
run: npm run migrate
Expand Down
Loading
Loading