-
Notifications
You must be signed in to change notification settings - Fork 780
50 lines (45 loc) · 1.43 KB
/
browsers-full.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
50
name: browsers-full
on:
# Once a week on Thursday at 02:15
schedule:
- cron: '15 2 * * 4'
# Or manually
workflow_dispatch:
# Or when developing this workflow
push:
paths:
- .github/workflows/browsers-full.yaml
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
- name: Tests
run: npm run browserstack
env:
BROWSERSTACK_JSON: build/browserstack-full.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 }}"