check in package-lock.json, adapt Dockerfile & CI config 💚

This commit is contained in:
Jannis R 2023-09-06 14:39:39 +02:00
parent e038ce37de
commit c34f218373
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5
4 changed files with 5437 additions and 4 deletions

View file

@ -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
View file

@ -5,7 +5,6 @@ Thumbs.db
node_modules
npm-debug.log
/package-lock.json
/dump.rdb
/docs/*.html

View file

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

File diff suppressed because it is too large Load diff