Skip to content

Commit

Permalink
Formatting etc
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrotherham committed Nov 19, 2023
1 parent bf20a74 commit ee94844
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build
run: npm run build

- name: "Run integration tests"
- name: Run browser tests (without Sauce Labs)
run: npm run wdio:test
env:
SAUCE_ENABLED: "false" # ensure we don't use Sauce Labs
SAUCE_ENABLED: false
10 changes: 5 additions & 5 deletions .github/workflows/saucelabs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
- name: Build
run: npm run build

- name: "Run cross-browser tests (using Sauce Labs)"
- name: Run browser tests (with Sauce Labs)
run: npm run wdio:test
env:
SAUCE_ENABLED: "true"
SAUCE_BUILD_NUMBER: "${{ github.run_id }}"
SAUCE_USERNAME: "${{ secrets.SAUCE_USERNAME }}"
SAUCE_ACCESS_KEY: "${{ secrets.SAUCE_ACCESS_KEY }}"
SAUCE_ENABLED: true
SAUCE_BUILD_NUMBER: ${{ github.run_id }}
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}

0 comments on commit ee94844

Please sign in to comment.