From c06708dc913d385e46c8d1451ef9d3e1a02508f0 Mon Sep 17 00:00:00 2001 From: Geekix Date: Mon, 8 Nov 2021 09:33:40 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 085d167..f85c542 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,28 +5,19 @@ orbs: node: circleci/node@2 jobs: - build: - docker: - - image: cimg/ruby:2.7-node - steps: - - checkout - - run : bundle install test: docker: - image: cimg/ruby:2.7-node - environment: - BUNDLE_RETRY: "3" - RAILS_ENV: test steps: - checkout + - run : + name: prerequisites + command :bundle install - run: name: test command: bundle exec rake validate lint workflows: version: 2 - build_and_test: + test: jobs: - - build - - test: - requires: - - build + - test