debug: back to npm ci
Some checks failed
CI/CD / test (push) Failing after 5s
CI/CD / deploy (push) Failing after 26s

This commit is contained in:
Stepan Vladovskiy 2024-04-09 13:09:19 -03:00
parent c50d74d38d
commit 0ae0273428
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependencies
run: npm install
run: npm ci
deploy:
runs-on: ubuntu-latest

View File

@ -2,4 +2,4 @@ FROM node:alpine
EXPOSE 4000
COPY . .
RUN npm install
CMD ["node", "./index.mjs"]
CMD npm start