[INTERNAL] dependabot-auto-merge.yml: move to correct location #921
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: SauceLabs Integration Tests (UI5 1.71 / IE11) | |
# Prevent multiple parallel executions as the OpenSauce account is quite limited | |
concurrency: SauceLabs | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
name: SauceLabs Integration Tests (UI5 1.71 / IE11) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Use Node.js LTS 16.x | |
uses: actions/[email protected] | |
with: | |
# There are issues with some tests, related to Node 18 and SauceLabs | |
# It seems that files from the local UI5 server can't be loaded due to CSP | |
node-version: 16.x | |
- run: npm ci | |
- name: Install @openui5/[email protected] | |
run: npm install -D @openui5/[email protected] | |
- name: Start sauce-connect | |
uses: saucelabs/[email protected] | |
with: | |
username: ${{ secrets.SAUCE_USERNAME }} | |
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }} | |
tunnelIdentifier: github-${{ github.run_id }} | |
region: eu-central | |
# Prevents step from running for forks, which doesn't work as secrets are not available | |
if: env.SAUCE_USERNAME != null | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
- run: npm run integration-saucelabs | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
# Prevents step from running for forks, which doesn't work as secrets are not available | |
if: env.SAUCE_USERNAME != null |