Skip to content

Commit

Permalink
🐛(front) fix lambda update-state CI job
Browse files Browse the repository at this point in the history
Due to an oversight when we renamed the confirm lambda to
update-state, the job was not running correctly anymore.

We can just update the paths & name in Circle CI config to
get it working again.
  • Loading branch information
mbenadda committed Oct 24, 2018
1 parent 43c7352 commit 7511442
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -347,27 +347,27 @@ jobs:
- ./node_modules
key: v3-lambdas-encode-dependencies-{{ checksum "package.json" }}

test-lambda-confirm:
test-lambda-update-state:
docker:
- image: circleci/node:8.11.3
working_directory: ~/marsha/terraform/source/confirm
working_directory: ~/marsha/terraform/source/update_state
steps:
- checkout:
path: ~/marsha
- restore_cache:
keys:
- v3-lambdas-confirm-dependencies-{{ checksum "package.json" }}
- v3-lambdas-confirm-dependencies-
- v3-lambdas-update-state-dependencies-{{ checksum "package.json" }}
- v3-lambdas-update-state-dependencies-
- run:
name: Install confirm lambda dependencies
name: Install update-state lambda dependencies
command: yarn install --ignore-engines --frozen-lockfile
- run:
name: Run confirm lambda tests
name: Run update-state lambda tests
command: yarn test
- save_cache:
paths:
- ./node_modules
key: v3-lambdas-confirm-dependencies-{{ checksum "package.json" }}
key: v3-lambdas-update-state-dependencies-{{ checksum "package.json" }}

# ---- Alpine jobs ----
build-alpine:
Expand Down Expand Up @@ -548,7 +548,7 @@ workflows:
filters:
tags:
only: /.*/
- test-lambda-confirm:
- test-lambda-update-state:
filters:
tags:
only: /.*/
Expand Down

0 comments on commit 7511442

Please sign in to comment.