Bump the bench group with 2 updates #1596
Workflow file for this run
This file contains hidden or 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: "Browserstack" | |
on: | |
push: | |
branches: [main, "v*"] | |
tags: ["v*"] | |
pull_request: | |
branches: [main, "v*"] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
env: | |
# https://consoledonottrack.com/ | |
DO_NOT_TRACK: 1 | |
jobs: | |
browserstack: | |
name: "Test @connectrpc/connect-web on Browserstack" | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
env: | |
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} | |
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | |
steps: | |
- name: Check credentials | |
id: credentials | |
shell: bash | |
# Job and step conditions do not have access to secrets or the environment. | |
# This step makes presence of the browserstack credentials available as a step output. | |
run: (test -n "${BROWSERSTACK_USERNAME}" && echo present=1 || echo present=0) >> $GITHUB_OUTPUT | |
- uses: actions/checkout@v4 | |
if: (steps.credentials.outputs.present == '1') | |
- uses: actions/setup-node@v4 | |
if: (steps.credentials.outputs.present == '1') | |
with: | |
node-version-file: .nvmrc | |
- uses: actions/cache@v4 | |
if: (steps.credentials.outputs.present == '1') | |
with: | |
path: .turbo | |
key: ${{ runner.os }}/browserstack/${{ github.sha }} | |
restore-keys: ${{ runner.os }}/browserstack | |
- name: NPM Install | |
if: (steps.credentials.outputs.present == '1') | |
run: npm ci | |
- name: Browserstack | |
if: (steps.credentials.outputs.present == '1') | |
run: npx turbo run test-browserstack --output-logs new-only --log-order stream |