mirror of
https://github.com/beefproject/beef
synced 2026-06-08 13:15:56 +00:00
420681489c
Also gate the auto-run condition on github.actor == 'dependabot[bot]' so commits pushed to a Dependabot PR by anyone else fall back to the explicit safe_to_test opt-in instead of running automatically with secret access.
88 lines
2.8 KiB
YAML
88 lines
2.8 KiB
YAML
name: 'BrowserStack Test'
|
|
|
|
on:
|
|
pull_request_target:
|
|
branches: [ master ]
|
|
types: [ opened, synchronize, reopened, labeled ]
|
|
|
|
jobs:
|
|
ubuntu-job:
|
|
name: 'BrowserStack Test on Ubuntu'
|
|
runs-on: ubuntu-latest
|
|
concurrency:
|
|
group: browserstack-${{ github.event.pull_request.number }}
|
|
cancel-in-progress: true
|
|
# Auto-run for Dependabot; let humans opt in via the safe_to_test label.
|
|
# Require the triggering actor to also be Dependabot so commits pushed by
|
|
# anyone else fall back to the explicit safe_to_test opt-in.
|
|
if: >-
|
|
(github.event.pull_request.user.login == 'dependabot[bot]' &&
|
|
github.actor == 'dependabot[bot]' &&
|
|
github.event.action != 'labeled') ||
|
|
github.event.label.name == 'safe_to_test'
|
|
env:
|
|
GITACTIONS: true
|
|
steps:
|
|
|
|
- name: 'Remove safe_to_test label'
|
|
if: github.event.action == 'labeled'
|
|
uses: actions/github-script@v8
|
|
with:
|
|
script: |
|
|
try {
|
|
await github.rest.issues.removeLabel({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
issue_number: context.payload.pull_request.number,
|
|
name: 'safe_to_test'
|
|
});
|
|
} catch (e) {
|
|
if (e.status === 404) {
|
|
console.log('Label already removed, skipping');
|
|
} else {
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
- name: 'BrowserStack Env Setup' # Invokes the setup-env action
|
|
uses: browserstack/github-actions/setup-env@master
|
|
with:
|
|
username: ${{ secrets.BROWSERSTACK_USERNAME }}
|
|
access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
|
|
|
|
- name: 'BrowserStack Local Tunnel Setup' # Invokes the setup-local action
|
|
uses: browserstack/github-actions/setup-local@master
|
|
with:
|
|
local-testing: start
|
|
local-identifier: random
|
|
|
|
- name: 'Checkout the repository'
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
fetch-depth: 2
|
|
|
|
- name: 'Setting up Ruby'
|
|
uses: ruby/setup-ruby@v1
|
|
# Ruby version is defined in .ruby-version file
|
|
|
|
- name: 'Update and Install Dependencies'
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install libcurl4 libcurl4-openssl-dev
|
|
|
|
- name: 'Configure Bundle testing and install gems'
|
|
run: |
|
|
bundle config unset --local without
|
|
bundle config set --local with 'test' 'development'
|
|
bundle install
|
|
|
|
- name: 'Run BrowserStack simple verification'
|
|
run: |
|
|
bundle exec rake browserstack --trace
|
|
|
|
- name: 'BrowserStackLocal Stop' # Terminating the BrowserStackLocal tunnel connection
|
|
uses: browserstack/github-actions/setup-local@master
|
|
with:
|
|
local-testing: stop
|