Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1696c1f..eb6cbe9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,6 +4,9 @@ jobs:
lhci:
name: Lighthouse
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ castanet-config: [blue-grid,blue-row-jumbo-false,blue-row-jumbo-true]
steps:
- uses: actions/checkout@v2
with:
@@ -24,6 +27,7 @@ jobs:
- name: run Lighthouse CI
run: |
npm install -g @lhci/cli@0.6.x
- lhci autorun
+ lhci autorun --config=./test/$CASTANET_CONFIG.js
env:
- LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} \ No newline at end of file
+ LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
+ CASTANET_CONFIG: ${{ matrix.castanet-config }} \ No newline at end of file