chore: Bump to latest #210
Workflow file for this run
This file contains 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: saucectl playwright tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
SAUCE_USERNAME: ${{secrets.SAUCE_USERNAME}} | |
SAUCE_ACCESS_KEY: ${{secrets.SAUCE_ACCESS_KEY}} | |
GITHUB_TOKEN: ${{ github.token }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Saucectl RUN | |
uses: saucelabs/saucectl-run-action@v3 | |
with: | |
concurrency: 10 | |
playwright-cucumberjs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
cache-dependency-path: examples/cucumber/package-lock.json | |
- name: Install dependencies | |
working-directory: examples/cucumber | |
run: npm ci | |
- name: Saucectl RUN - Config Driven | |
uses: saucelabs/saucectl-run-action@v3 | |
with: | |
working-directory: ./examples/cucumber/ |