From d73226892a4a6845edcf5291ffbb0951c396fa2f Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Fri, 26 Feb 2021 17:28:23 -0600 Subject: [PATCH] fix: Speed up CI builds with more caches --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 69e7d69d..11e9a0b5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,8 @@ cache: paths: - _build/ - deps/ + - node_modules/ + - apps/app/assets/node_modules/ variables: POSTGRES_PASSWORD: "postgres" @@ -19,7 +21,7 @@ variables: test: stage: test needs: [] - image: "elixir:1.10" + image: "elixir:1.11.3-alpine" services: - name: postgres:12 script: script/cibuild