add ci --check

This commit is contained in:
Gsk54
2023-01-10 15:28:19 +01:00
parent ede51f0936
commit b1224ed76c
7 changed files with 135 additions and 11 deletions

29
ci/Dockerfile Normal file
View File

@@ -0,0 +1,29 @@
###################
# BUILD FOR CI TESTING
###################
FROM node:18-alpine3.16
# Create app directory
WORKDIR /usr/src/app
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY package*.json ./
# Install app dependencies
RUN npm ci
# Bundle app source
COPY . .
# Generate prisma client
RUN npx prisma generate
# Create a "dist" folder
RUN npm run build
# Run unit tests
RUN npm run test:unit:ci
# Start the server
CMD [ "node", "dist/main.js" ]