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 ci.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ prepare:
command: cd frontend && npm ci
- name: install backend dependencies
command: cd backend && npm ci
test:
steps:
- name: run security audit
command: cd backend && npm audit --audit-level moderate
- name: run frontend audit
command: cd frontend && npm audit --audit-level moderate
test:
steps:
- name: run backend tests
command: cd backend && npm test
- name: run frontend tests
Expand Down
4 changes: 2 additions & 2 deletions ci.qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ prepare:
command: cd frontend && npm install
- name: install backend dependencies
command: cd backend && npm install
test:
steps:
- name: run linting
command: cd backend && npm run lint
- name: run frontend linting
command: cd frontend && npm run lint
test:
steps:
- name: run backend tests
command: cd backend && npm test
- name: run frontend tests
Expand Down