root: use npm ci

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2022-04-14 22:30:44 +02:00
parent 4c14e88a25
commit e455e20312
8 changed files with 14 additions and 14 deletions

View File

@ -138,7 +138,7 @@ jobs:
if: steps.cache-web.outputs.cache-hit != 'true'
run: |
cd web
npm i
npm ci
npm run build
- name: run e2e
run: |
@ -171,7 +171,7 @@ jobs:
if: steps.cache-web.outputs.cache-hit != 'true'
run: |
cd web
npm i
npm ci
npm run build
- name: run e2e
run: |

View File

@ -116,7 +116,7 @@ jobs:
- name: Build web
run: |
cd web
npm install
npm ci
npm run build-proxy
- name: Build outpost
run: |

View File

@ -22,7 +22,7 @@ jobs:
cache-dependency-path: web/package-lock.json
- run: |
cd web
npm install
npm ci
- name: Generate API
run: make gen-web
- name: Eslint
@ -40,7 +40,7 @@ jobs:
cache-dependency-path: web/package-lock.json
- run: |
cd web
npm install
npm ci
- name: Generate API
run: make gen-web
- name: prettier
@ -58,7 +58,7 @@ jobs:
cache-dependency-path: web/package-lock.json
- run: |
cd web
npm install
npm ci
- name: Generate API
run: make gen-web
- name: lit-analyse
@ -86,7 +86,7 @@ jobs:
cache-dependency-path: web/package-lock.json
- run: |
cd web
npm install
npm ci
- name: Generate API
run: make gen-web
- name: build

View File

@ -99,7 +99,7 @@ jobs:
- name: Build web
run: |
cd web
npm install
npm ci
npm run build-proxy
- name: Build outpost
run: |

View File

@ -19,7 +19,7 @@ jobs:
- name: Publish package
run: |
cd web-api/
npm i
npm ci
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}