From 680cfe09f8ac7bc4bac212ff2ed4b2bf64297492 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 23 Aug 2021 14:36:14 -0500 Subject: [PATCH] GitLab CI: don't cache static directory This didn't work like I hoped --- .gitlab-ci.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cd69589d87..3bc4902296 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,14 +4,11 @@ variables: NODE_ENV: test cache: - - key: - files: - - yarn.lock - paths: - - node_modules - - key: $CI_COMMIT_REF_NAME - paths: - - static + key: + files: + - yarn.lock + paths: + - node_modules stages: - lint