Skip to content

Commit

Permalink
fix: deploy issues second attempt (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
lautarodragan authored Jun 27, 2019
1 parent 7172602 commit 3b13bae
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
version: 2.1
executors:
base-node:
environment:
FOO: bar
docker:
- image: poetapp/base:10.14.2-alpine

Expand All @@ -12,12 +10,12 @@ jobs:
steps:
- checkout
- restore_cache:
key: v1-{{ checksum "package.json" }}
key: v2-{{ checksum "package.json" }}
- run:
name: Install deps
command: npm install
- save_cache:
key: v1-{{ checksum "package.json" }}
key: v2-{{ checksum "package.json" }}
paths:
- ./node_modules

Expand All @@ -26,7 +24,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v1-{{ checksum "package.json" }}
key: v2-{{ checksum "package.json" }}
- run:
name: Lint
command: npm run lint
Expand All @@ -36,7 +34,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v1-{{ checksum "package.json" }}
key: v2-{{ checksum "package.json" }}
- run:
name: Build dist
command: npm run build
Expand All @@ -46,7 +44,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v1-{{ checksum "package.json" }}
key: v2-{{ checksum "package.json" }}
- run:
name: Semantic-release
command: npx semantic-release
Expand Down

0 comments on commit 3b13bae

Please sign in to comment.