Skip to content

Commit b2c2011

Browse files
authored
Merge pull request #523 from FalkorDB/gkorland-patch-1
Change npm install to npm ci for dependencies
2 parents e58cc3b + 5ce6aef commit b2c2011

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/playwright.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
NEXT_PUBLIC_MODE: UNLIMITED
3535
BACKEND_URL: ${{ secrets.BACKEND_URL }}
3636
run: |
37-
npm install
3837
npm run build
3938
NEXTAUTH_SECRET=SECRET npm start & npx playwright test --shard=${{ matrix.shard }}/2 --reporter=dot,list
4039
- name: Ensure required directories exist

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR /app
66

77
# Copy package.json and install dependencies
88
COPY package*.json ./
9-
RUN npm install
9+
RUN npm ci
1010

1111
# Copy the rest of the application code
1212
COPY . .

0 commit comments

Comments
 (0)