Skip to content

Commit ee1229a

Browse files
committed
fix
1 parent 7e13080 commit ee1229a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
run: docker-compose up -d
2121

2222
- name: Run ESLint
23-
run: docker compose run app npm lint
23+
run: docker compose run app npm run lint

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
run: docker-compose up -d
2121

2222
- name: Run Jest tests
23-
run: docker compose run app npm test
23+
run: docker compose run app npm run test

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR /usr/src/app
44

55
COPY package*.json ./
66

7-
RUN npm ci --only=production
7+
RUN npm ci
88

99
COPY . .
1010

0 commit comments

Comments
 (0)