Skip to content

Commit

Permalink
remove package-lock.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Lurkars committed Oct 25, 2024
1 parent 93596a9 commit 371da41
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 18,569 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci and npm test
- name: npm i and npm test
run: |
npm ci
npm i
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
npm-debug.log
yarn-error.log
.npm
package-lock.json

# IDEs and editors
.idea/
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:lts-alpine as builder
WORKDIR /src
COPY package.json package-lock.json /src/
RUN npm ci
COPY package.json /src/
RUN npm i
COPY . .
RUN npm run build

Expand Down
Loading

0 comments on commit 371da41

Please sign in to comment.