Core: Add automatic labels in test.each() for primitive values in arrays #1109
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-quick | |
on: | |
- push | |
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 | |
# To debug locally: | |
# | |
# ``` | |
# $ export BROWSERSTACK_USERNAME="***" | |
# $ export BROWSERSTACK_KEY="***" | |
# $ BROWSERSTACK_JSON=build/browserstack-debug.json npm run browserstack | |
# ``` | |
- name: Tests | |
run: npm run browserstack | |
env: | |
BROWSERSTACK_JSON: build/browserstack-quick.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: "quick ${{ github.ref }} ${{ github.sha }}" | |
TUNNEL_ID: "${{ github.event_name }}-quick-${{ github.sha }}" |