check in package-lock.json, adapt Dockerfile & CI config 💚
This commit is contained in:
parent
e038ce37de
commit
c34f218373
4 changed files with 5437 additions and 4 deletions
2
.github/workflows/docker-image.yml
vendored
2
.github/workflows/docker-image.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18.x
|
||||
- run: npm install
|
||||
- run: npm ci
|
||||
- run: npm run lint
|
||||
- run: npm run build
|
||||
- run: npm test
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,7 +5,6 @@ Thumbs.db
|
|||
node_modules
|
||||
npm-debug.log
|
||||
|
||||
/package-lock.json
|
||||
/dump.rdb
|
||||
|
||||
/docs/*.html
|
||||
|
|
|
@ -3,8 +3,8 @@ WORKDIR /app
|
|||
|
||||
# install dependencies
|
||||
RUN apk add --update git bash
|
||||
ADD package.json /app
|
||||
RUN npm install
|
||||
ADD package.json package-lock.json /app
|
||||
RUN npm ci
|
||||
|
||||
# build documentation
|
||||
ADD . /app
|
||||
|
|
5434
package-lock.json
generated
Normal file
5434
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue