-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (41 loc) · 1.44 KB
/
nightly-scheduled-test.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
49
---
name: nightly-scheduled-test
on:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
# runs every day at midnight
- cron: "0 0 * * *"
jobs:
nightly-make-test:
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Npm CI Install
run: make nightly-npm-install
- name: Nightly Tests
run: make nightly-npm-tests
env:
MIDDLEWARE_URL: http://localhost:4000/rpc # middleware URL
NODE_URLS: https://rpc.testnet.casperlabs.io/rpc
NETWORK_NAME: casper-test
PEERS_UPDATE_INTERVAL: 300
- name: Slack Notification
uses: ravsamhq/notify-slack-action@4ed28566c2bdcdaee6dca2b46b9666d01b4ed8a4 #v1.10.0
if: always()
with:
status: ${{ job.status }}
notification_title: "*{repo}*"
message_format: "{emoji} *{workflow}* *{status_message}* in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
footer: "<{run_url}|View Run>"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
- name: Fake Commit after 50 days
uses: gautamkrishnar/keepalive-workflow@790c7f09285a59b09bb578c85e271c6ff2af97c4 #v1.1.0