Re-write test with storybook testing library (#150)
* Re-write test with storybook testing library * Update CI
This commit is contained in:
@ -1,17 +1,11 @@
|
||||
FROM node:18.16.0-alpine as front
|
||||
|
||||
RUN apk update && apk upgrade && \
|
||||
apk add --no-cache bash git openssh && \
|
||||
apk add libc6-compat && \
|
||||
apk add python3 && \
|
||||
apk add make && \
|
||||
apk add g++
|
||||
FROM node:18.16.0 as front
|
||||
|
||||
WORKDIR /app/front
|
||||
|
||||
COPY ../../front/package.json .
|
||||
COPY ../../front/package-lock.json .
|
||||
RUN npm install
|
||||
RUN npx playwright install-deps
|
||||
|
||||
WORKDIR /app/server
|
||||
|
||||
|
||||
Reference in New Issue
Block a user