Skip to content

Commit

Permalink
try reusable matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtzData committed Dec 21, 2024
1 parent 4b74399 commit 4456585
Showing 1 changed file with 41 additions and 58 deletions.
99 changes: 41 additions & 58 deletions .github/workflows/e2e_matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,65 +27,48 @@ jobs:
strategy:
fail-fast: false
matrix:
url: ${{ fromJson(inputs.urls || toJson(github.event.inputs.urls ? github.event.inputs.urls.split(',') : [
"https://eth-sepolia.k8s-dev.blockscout.com",
"https://eth-sepolia.blockscout.com",
"https://eth.blockscout.com",
"https://base.blockscout.com",
"https://gnosis.blockscout.com",
"https://optimism.blockscout.com",
"https://neon.blockscout.com",
"https://rootstock.blockscout.com",
"https://polygon.blockscout.com",
"https://explorer.immutable.com",
"https://zkevm.blockscout.com",
"https://arbitrum.blockscout.com",
"https://zksync.blockscout.com",
"https://www.shibariumscan.io",
"https://explorer.zora.energy",
"https://blast.blockscout.com"
])) }}
url: ${{ fromJson(inputs.urls || github.event.inputs.urls || '["https://eth-sepolia.k8s-dev.blockscout.com","https://eth-sepolia.blockscout.com","https://eth.blockscout.com","https://base.blockscout.com","https://gnosis.blockscout.com","https://optimism.blockscout.com","https://neon.blockscout.com","https://rootstock.blockscout.com","https://polygon.blockscout.com","https://explorer.immutable.com","https://zkevm.blockscout.com","https://arbitrum.blockscout.com","https://zksync.blockscout.com","https://www.shibariumscan.io","https://explorer.zora.energy","https://blast.blockscout.com"]') }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install deps
run: npm ci
- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Install Playwright Browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: npx playwright install --with-deps
- name: Run playwright
env:
BLOCKSCOUT_URL: ${{ matrix.url }}
run: |
npm run test:ondemand
- uses: actions/upload-artifact@v3
if: always()
with:
name: report
path: tests/e2e/test-results
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install deps
run: npm ci
- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Install Playwright Browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: npx playwright install --with-deps
- name: Run playwright
env:
BLOCKSCOUT_URL: ${{ matrix.url }}
run: |
npm run test:ondemand
- uses: actions/upload-artifact@v3
if: always()
with:
name: report
path: tests/e2e/test-results
defaults:
run:
shell: bash
Expand Down

0 comments on commit 4456585

Please sign in to comment.