-
Notifications
You must be signed in to change notification settings - Fork 35
48 lines (40 loc) · 1.16 KB
/
bacom.daily.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Bacom Nala Daily Run
on:
schedule:
- cron: '0 16 * * *'
workflow_dispatch:
jobs:
platform_matrix:
strategy:
fail-fast: false
matrix:
os: [ubuntu-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 bacom blocks tests ${{ matrix.os }}
run: bash dailyrun.sh bacom @bacomSmoke
env:
SLACK_WH: ${{ secrets.SLACK_WH }}
- name: Run milo blocks tests on bacom ${{matrix.os}}
run: npx playwright test --config=./configs/bacom.config.js -g @milo
env:
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