-
Notifications
You must be signed in to change notification settings - Fork 780
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] Build: Try adding back old iOS/Android to BS matrix
* Drop support for Android 4-6, and Android Browser, require Android 7.0+ which can run Chrome 80. * Drop support for iOS 7-8, require iOS 9+ (we already require Safari 9 for macOS).
- Loading branch information
Showing
5 changed files
with
64 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: browsers-debug | ||
on: | ||
# Or manually | ||
workflow_dispatch: | ||
# Or when developing this workflow | ||
push: | ||
paths: | ||
- .github/workflows/browsers-debug.yaml | ||
- build/browserstack-debug.json | ||
|
||
jobs: | ||
run: | ||
name: BrowserStack | ||
if: ${{ github.repository == 'qunitjs/qunit' }} # skip on forks, needs secret | ||
runs-on: ubuntu-latest | ||
env: | ||
PUPPETEER_DOWNLOAD_PATH: "${{ github.workspace }}/.puppeteer_download" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.npm | ||
${{ github.workspace }}/.puppeteer_download | ||
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: Use Node.js 18 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
|
||
- name: Prepare | ||
run: | | ||
npm ci | ||
npm run build | ||
- name: Tests | ||
run: npm run browserstack | ||
env: | ||
BROWSERSTACK_JSON: build/browserstack-debug.json | ||
BROWSERSTACK_USERNAME: "${{ secrets.BROWSERSTACK_USERNAME }}" | ||
BROWSERSTACK_KEY: "${{ secrets.BROWSERSTACK_KEY }}" | ||
# Set "project" metadata | ||
TRAVIS_REPO_SLUG: "${{ github.repository }} ${{ github.event_name }}" | ||
# Set "commit" metadata | ||
TRAVIS_COMMIT: "full ${{ github.ref }} ${{ github.sha }}" | ||
TUNNEL_ID: "${{ github.event_name }}-full-${{ github.sha }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ on: | |
push: | ||
paths: | ||
- .github/workflows/browsers-full.yaml | ||
- build/browserstack-full.json | ||
|
||
jobs: | ||
run: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters