From a6b65fc6a4da714f495b07cc5ad49c1622b0fd68 Mon Sep 17 00:00:00 2001 From: "[The-Noble-K]" Date: Sun, 7 Aug 2022 16:26:51 -0400 Subject: [PATCH] added parallelization to the GHA config --- .github/ISSUE_TEMPLATE/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/workflows/main.yml b/.github/ISSUE_TEMPLATE/workflows/main.yml index 5751f3202..a6f574663 100644 --- a/.github/ISSUE_TEMPLATE/workflows/main.yml +++ b/.github/ISSUE_TEMPLATE/workflows/main.yml @@ -5,6 +5,10 @@ on: [push] jobs: install: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + containers: [1, 2, 3] steps: - name: Checkout uses: actions/checkout@v2 @@ -17,6 +21,8 @@ jobs: build: yarn build start: yarn start wait-on: 'http://localhost:3000' + record: true + parallel: true env: COMMERCE_PROVIDER: ${{ secrets.COMMERCE_PROVIDER }} NEXT_PUBLIC_SHOPIFY_STOREFRONT_ACCESS_TOKEN: ${{ secrets.NEXT_PUBLIC_SHOPIFY_STOREFRONT_ACCESS_TOKEN }}