From b18667922ca630e2ab1c0c7b9431fcefc364a372 Mon Sep 17 00:00:00 2001 From: Caley Woods Date: Wed, 21 Aug 2024 10:32:40 -0500 Subject: [PATCH] Fix circleci config syntax --- .circleci/config.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bcf1843b4..af7860549 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,13 +29,17 @@ jobs: # - run: # name: Check JavaScript style # command: npx standard - - lint: npm run lint - - build: npm run build - - verify: - name: Verify that the build passes HTML validation - command: | - npm run test:html-validation - npm run test:links + - run: + name: Lint JavaScript + command: npm run lint + - run: + name: Build the site + command: npm run build + - run: + name: Verify that the build passes HTML validation + command: | + npm run test:html-validation + npm run test:links # We export the file list in pa11y_targets so that we can make pa11y-ci scan only those changed files in the "Run pa11yci" step # - run: # name: 11ty build