Docs: Import release excerpts for 1.3.0-2.21.1 from twitter.com/qunitjs #1277
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_CACHE_DIR: "${{ 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.json') }} | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Prepare | |
run: | | |
npm install | |
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 }}" |