diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9afe89a9..86b8496f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,6 +55,7 @@ credo: - mix local.hex --force - mix local.rebar --force - mix deps.get + - mix deps.compile - mix credo --all stylelint: diff --git a/apps/content/test/content_web/controllers/comment_controller_test.exs b/apps/content/test/content_web/controllers/comment_controller_test.exs index 9190db0a..ffcaf219 100644 --- a/apps/content/test/content_web/controllers/comment_controller_test.exs +++ b/apps/content/test/content_web/controllers/comment_controller_test.exs @@ -24,7 +24,7 @@ defmodule Legendary.Content.CommentControllerTest do post = fixture(:post) conn = post conn, Routes.comment_path(conn, :create), comment: @create_attrs - assert %{id: id} = redirected_params(conn) + assert %{id: _} = redirected_params(conn) assert redirected_to(conn) == Routes.posts_path(conn, :show, post) end diff --git a/script/update b/script/update index e943af30..21ba0899 100755 --- a/script/update +++ b/script/update @@ -21,6 +21,7 @@ if [ "$FRAMEWORK" != 'git@gitlab.com:mythic-insight/legendary.git' ]; then fi; mix deps.get +mix deps.compile mix npm.install mix ecto.create mix ecto.migrate