From 78638720934a70f993cf1c8c5cf13d9b69f23a44 Mon Sep 17 00:00:00 2001
From: BryceLTaylor <brycet@media.mit.edu>
Date: Thu, 13 Jan 2022 15:40:48 -0500
Subject: [PATCH] circleci config fix formatting

---
 .circleci/config.yml | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index a9cbbc700..06b854a8e 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -43,24 +43,24 @@ aliases:
       - image: circleci/node:10-browsers
     working_directory: ~/repo
   - &setup_steps
-        - *restore_git_cache
-        - checkout
-        - run: npm ci
+      - *restore_git_cache
+      - checkout
+      - run: npm ci
   - &test_steps
-        - run:
-            name: Lint
-            command: npm run test:lint -- --quiet --output-file test-results/eslint-results.xml --format junit
-        - run:
-            name: Unit
-            environment:
-              JEST_JUNIT_OUTPUT_NAME: unit-results.xml
-            command: npm run test:unit -- --reporters="default" --reporters="jest-junit" --coverage --coverageReporters=text --coverageReporters=lcov --maxWorkers="2"
-        - store_artifacts:
-            path: coverage
+      - run:
+          name: Lint
+          command: npm run test:lint -- --quiet --output-file test-results/eslint-results.xml --format junit
+      - run:
+          name: Unit
+          environment:
+            JEST_JUNIT_OUTPUT_NAME: unit-results.xml
+          command: npm run test:unit -- --reporters="default" --reporters="jest-junit" --coverage --coverageReporters=text --coverageReporters=lcov --maxWorkers="2"
+      - store_artifacts:
+          path: coverage
   - &build_steps
-        - run:
-            name: Build
-            command: npm run build
+      - run:
+          name: Build
+          command: npm run build
 
 jobs:
   build-test-no-cache:
@@ -71,8 +71,8 @@ jobs:
       NODE_OPTIONS: --max-old-space-size=4000
     steps:
       *setup_steps
-      <<: *test_steps
-      <<: *build_steps
+      *test_steps
+      *build_steps
   setup:
     <<: *defaults
     steps:
-- 
GitLab