We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e13080 commit ee1229aCopy full SHA for ee1229a
.github/workflows/lint.yml
@@ -20,4 +20,4 @@ jobs:
20
run: docker-compose up -d
21
22
- name: Run ESLint
23
- run: docker compose run app npm lint
+ run: docker compose run app npm run lint
.github/workflows/test.yml
- name: Run Jest tests
- run: docker compose run app npm test
+ run: docker compose run app npm run test
Dockerfile
@@ -4,7 +4,7 @@ WORKDIR /usr/src/app
4
5
COPY package*.json ./
6
7
-RUN npm ci --only=production
+RUN npm ci
8
9
COPY . .
10
0 commit comments