Skip to content

Commit

Permalink
chore: expand ios testing (#623)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhousley authored Aug 1, 2023
1 parent 6887940 commit 503b38a
Show file tree
Hide file tree
Showing 20 changed files with 20,955 additions and 307 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/jil-all-browsers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
uses: ./.github/workflows/jil-single-browser.yml
with:
ref: ${{ inputs.ref || github.ref }}
browser-target: ios@*
browser-target: ios@<16
build-number: ${{ inputs.build-number }}
collection: unit
secrets: inherit
Expand All @@ -111,7 +111,7 @@ jobs:
uses: ./.github/workflows/jil-single-browser.yml
with:
ref: ${{ inputs.ref || github.ref }}
browser-target: ios@*
browser-target: ios@<16
build-number: ${{ inputs.build-number }}
collection: functional
secrets: inherit
Expand All @@ -120,7 +120,7 @@ jobs:
uses: ./.github/workflows/jil-single-browser.yml
with:
ref: ${{ inputs.ref || github.ref }}
browser-target: android@*
browser-target: android@<13
build-number: ${{ inputs.build-number }}
collection: unit
secrets: inherit
Expand All @@ -129,7 +129,7 @@ jobs:
uses: ./.github/workflows/jil-single-browser.yml
with:
ref: ${{ inputs.ref || github.ref }}
browser-target: android@*
browser-target: android@<13
build-number: ${{ inputs.build-number }}
collection: functional
secrets: inherit
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/jil-single-browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ on:

jobs:
jil:
name: JIL Test - ${{ inputs.browser-target }} - ${{ inputs.collection }}
name: JIL Test - '${{ inputs.browser-target }}' - ${{ inputs.collection }}
timeout-minutes: 60
runs-on: ubuntu-latest
defaults:
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
node --max-old-space-size=8192 ./tools/jil/bin/cli.js \
-f merged \
-s \
-b ${{ inputs.browser-target }} \
-b '${{ inputs.browser-target }}' \
--concurrent 10 \
--${{ inputs.collection}}-only \
-t 85000 \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wdio-single-browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ on:

jobs:
wdio:
name: WDIO Test - ${{ inputs.browser-target }}
name: WDIO Test - '${{ inputs.browser-target }}'
timeout-minutes: 60
runs-on: ubuntu-latest
defaults:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
run: |
node ./tools/wdio/bin/cli.js \
-s \
-b ${{ inputs.browser-target }} \
-b '${{ inputs.browser-target }}' \
--concurrent 10 \
${{ runner.debug && '-v -L -D -d' || '' }} \
${{ inputs.coverage && '--coverage' || '' }} \
Expand Down
Loading

0 comments on commit 503b38a

Please sign in to comment.