Browse Source

fix(config.yml):CircleCI received exit code 1

I resolved this issue:
error Command failed with exit code 1.
dockerbuild-pushstep
sipe-daniel 6 years ago
parent
commit
94c9f0bc3a
  1. 3
      .circleci/config.yml
  2. 5
      Dockerfile

3
.circleci/config.yml

@ -69,8 +69,7 @@ jobs:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-v2{{ checksum "yarn.lock" }}
keys: yarn-packages-v2{{ checksum "yarn.lock" }}
- run:
name: "E2e Test"
command: yarn test:e2e

5
Dockerfile

@ -1,5 +0,0 @@
FROM node:14.10.1
COPY ["package.json", "yarn.lock", "./"]
RUN yarn install
COPY . .
CMD ["yarn", "start"]
Loading…
Cancel
Save