Skip to content

chore: reenable all tests and update snapshots #5061

chore: reenable all tests and update snapshots

chore: reenable all tests and update snapshots #5061

name: Verify Saucelabs
on: pull_request
jobs:
verify-saucelabs:
timeout-minutes: 30
name: Verify Sauce Labs
# Run only from the original repository
# Because this job requires secrets, which cannot be shared with forks
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node 18
uses: actions/setup-node@v3
env:
FORCE_COLOR: 0
with:
node-version: '18'
cache: 'npm'
# Set up GitHub Actions caching for Wireit.
- uses: google/wireit@setup-github-actions-caching/v1
- name: Install Dependencies
run: npm ci
- name: Build packages
run: npm run build
- name: Test
run: |
cd packages/test-runner-saucelabs
npm run test
env:
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}