run npm ci in server

This commit is contained in:
Jonathan Jogenfors 2023-11-17 12:09:48 +01:00
parent 7a2c27484c
commit b0b8ce2d6d

View file

@ -120,9 +120,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Run npm install
- name: Run npm install in CLI
run: npm ci
- name: Run npm install in server
run: npm ci
working-directory: ../server
- name: Run e2e tests
run: npm run test:e2e
if: ${{ !cancelled() }}