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
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 18.x
|
node-version: 18.x
|
||||||
- run: npm install
|
- run: npm ci
|
||||||
- run: npm run lint
|
- run: npm run lint
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
- run: npm test
|
- run: npm test
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,7 +5,6 @@ Thumbs.db
|
||||||
node_modules
|
node_modules
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
|
|
||||||
/package-lock.json
|
|
||||||
/dump.rdb
|
/dump.rdb
|
||||||
|
|
||||||
/docs/*.html
|
/docs/*.html
|
||||||
|
|
|
@ -3,8 +3,8 @@ WORKDIR /app
|
||||||
|
|
||||||
# install dependencies
|
# install dependencies
|
||||||
RUN apk add --update git bash
|
RUN apk add --update git bash
|
||||||
ADD package.json /app
|
ADD package.json package-lock.json /app
|
||||||
RUN npm install
|
RUN npm ci
|
||||||
|
|
||||||
# build documentation
|
# build documentation
|
||||||
ADD . /app
|
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