Skip to content

Commit

Permalink
Merge pull request #232 from adobecom/daily-nala-workflow
Browse files Browse the repository at this point in the history
MWPW-155726 Adding daily e2e workflow.
  • Loading branch information
Dli3 committed Aug 5, 2024
2 parents 031d18d + 35b129d commit 44bc5ed
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/run-e2e-daily.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Bacom E2E Daily Run

on:
workflow_dispatch:
schedule:
- cron: '0 16 * * *'

jobs:
platform_matrix:
strategy:
fail-fast: false
matrix:
os: [macos-latest]
name: Running tests on Browserstack
runs-on: ${{ matrix.os }}
env:
WORKFLOW_NAME: 'Bacom E2E Nala Daily Run'
DAILY_RUN: 'true'

steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Run Nala ${{ matrix.os }}
run: bash runOnBrowserstack.sh bacom @e2e
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}

0 comments on commit 44bc5ed

Please sign in to comment.