From 939f87650f303770eee175342e99ed17a7f36465 Mon Sep 17 00:00:00 2001 From: Devon Powell Date: Fri, 10 Jul 2026 16:57:32 -0400 Subject: [PATCH] Run lint steps in parallel --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4863f1..7eb1635 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,10 +21,11 @@ jobs: d2l-registry-token: ${{ secrets.D2L_PACKAGE_REGISTRY_AUTH_TOKEN }} - name: Install dependencies run: npm ci - - name: Lint (ESLint) - run: npm run lint:eslint - - name: Lint (EditorConfig) - run: npm run lint:editorconfig + - parallel: + - name: Lint (ESLint) + run: npm run lint:eslint + - name: Lint (EditorConfig) + run: npm run lint:editorconfig licenses: name: Check Licenses timeout-minutes: 5