mirror of
https://github.com/vercel/commerce.git
synced 2025-06-11 02:16:58 +00:00
added parallelization to the GHA config
This commit is contained in:
parent
de9fe276e9
commit
a6b65fc6a4
6
.github/ISSUE_TEMPLATE/workflows/main.yml
vendored
6
.github/ISSUE_TEMPLATE/workflows/main.yml
vendored
@ -5,6 +5,10 @@ on: [push]
|
|||||||
jobs:
|
jobs:
|
||||||
install:
|
install:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
containers: [1, 2, 3]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -17,6 +21,8 @@ jobs:
|
|||||||
build: yarn build
|
build: yarn build
|
||||||
start: yarn start
|
start: yarn start
|
||||||
wait-on: 'http://localhost:3000'
|
wait-on: 'http://localhost:3000'
|
||||||
|
record: true
|
||||||
|
parallel: true
|
||||||
env:
|
env:
|
||||||
COMMERCE_PROVIDER: ${{ secrets.COMMERCE_PROVIDER }}
|
COMMERCE_PROVIDER: ${{ secrets.COMMERCE_PROVIDER }}
|
||||||
NEXT_PUBLIC_SHOPIFY_STOREFRONT_ACCESS_TOKEN: ${{ secrets.NEXT_PUBLIC_SHOPIFY_STOREFRONT_ACCESS_TOKEN }}
|
NEXT_PUBLIC_SHOPIFY_STOREFRONT_ACCESS_TOKEN: ${{ secrets.NEXT_PUBLIC_SHOPIFY_STOREFRONT_ACCESS_TOKEN }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user