forked from qunitjs/qunit
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (44 loc) · 1.45 KB
/
browsers-quick.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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@v3
- uses: actions/cache@v3
with:
path: |
~/.npm
${{ github.workspace }}/.puppeteer_download
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16.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 }}"