fix: change order of lint and build

Nuxt tsconfig doesn't exist until after build
This commit is contained in:
2022-09-01 09:31:49 +02:00
parent 422ea76da3
commit 059a32c97e
+1 -2
View File
@@ -6,8 +6,7 @@ COPY ./package.json ./yarn.lock ./.snyk ./
RUN yarn install --frozen-lockfile
COPY ./ ./
WORKDIR /build/autopublish-app
RUN yarn lint && yarn build
RUN yarn build && yarn lint
#RUN yarn start:ci & yarn wait && yarn test:cypress
FROM nginx