Skip to content

Bacom Nala Daily Run #253

Bacom Nala Daily Run

Bacom Nala Daily Run #253

Workflow file for this run

name: Bacom Nala Daily Run
on:
schedule:
- cron: '0 16 * * *'
workflow_dispatch:
jobs:
platform_matrix:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
name: Running tests
runs-on: ${{ matrix.os }}
env:
WORKFLOW_NAME: 'Bacom 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 dailyrun.sh bacom @bacomSmoke
env:
IMS_EMAIL: ${{ secrets.IMS_EMAIL }}
IMS_PASS: ${{ secrets.IMS_PASS }}
HLX_TKN: ${{ secrets.HLX_TKN }}
SLACK_WH: ${{ secrets.SLACK_WH }}
- name: Display workflow name
run: echo "The workflow name is $WORKFLOW_NAME"
- name: Persist JSON Artifact
uses: actions/upload-artifact@v3
if: always()
with:
name: nala-results
path: nala-results.json
retention-days: 30