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 }}

View File

@ -4,7 +4,7 @@ FROM --platform=${BUILDPLATFORM} docker.io/node:16 as website-builder
COPY ./website /work/website/
ENV NODE_ENV=production
RUN cd /work/website && npm i && npm run build-docs-only
RUN cd /work/website && npm ci && npm run build-docs-only
# Stage 2: Build webui
FROM --platform=${BUILDPLATFORM} docker.io/node:16 as web-builder
@ -13,7 +13,7 @@ COPY ./web /work/web/
COPY ./website /work/website/
ENV NODE_ENV=production
RUN cd /work/web && npm i && npm run build
RUN cd /work/web && npm ci && npm run build
# Stage 3: Build go proxy
FROM docker.io/golang:1.18.1-bullseye AS builder

View File

@ -132,8 +132,8 @@ ci-pending-migrations: ci--meta-debug
install:
poetry install
cd web && npm i
cd website && npm i
cd web && npm ci
cd website && npm ci
a: install
tmux \

View File

@ -4,7 +4,7 @@ FROM --platform=${BUILDPLATFORM} docker.io/node:16 as web-builder
COPY ./web /static/
ENV NODE_ENV=production
RUN cd /static && npm i && npm run build-proxy
RUN cd /static && npm ci && npm run build-proxy
# Stage 2: Build
FROM docker.io/golang:1.18.1-bullseye AS builder