From e72b0d400a35f477d5816187267e2c595c7fb6cd Mon Sep 17 00:00:00 2001 From: Akash Askoolum Date: Thu, 30 Jul 2026 20:18:32 +0100 Subject: [PATCH] ci: Parallelise steps See https://github.blog/changelog/2026-06-25-actions-steps-can-now-be-run-in-parallel/. --- .github/workflows/ci.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff45189..9aef87c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,17 +41,13 @@ jobs: - name: Install dependencies run: npm ci - - name: Lint - run: npm run lint + - parallel: + - run: npm run lint + - run: npm test - - name: test - run: npm test - - - name: Build - run: npm run build - - - name: Synth CDK - run: npm -w cdk run synth + - parallel: + - run: npm run build + - run: npm -w cdk run synth # See https://github.com/guardian/actions-riff-raff - name: Upload to riff-raff