[WIP] Build: Try adding back old iOS/Android to BS matrix #2
Workflow file for this 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
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 }}" |