Skip to content

Fix dropdown unit test for Edge? try 2 #612

Fix dropdown unit test for Edge? try 2

Fix dropdown unit test for Edge? try 2 #612

Workflow file for this run

name: Sauce Labs
on:
push:
workflow_dispatch:
env:
FORCE_COLOR: 2
NODE: 20
permissions:
contents: read
jobs:
saucelabs:
runs-on: ubuntu-latest
if: github.repository == 'cast-org/figuration' && (!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]'))
timeout-minutes: 30
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "${{ env.NODE }}"
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run Sauce Labs tests
run: npm run js-test-cloud
env:
SAUCE_ACCESS_KEY: "${{ secrets.SAUCE_ACCESS_KEY }}"
SAUCE_USERNAME: "${{ secrets.SAUCE_USERNAME }}"
GITHUB_SHA: "${{ github.sha }}"