Skip to content

Commit 3bd757a

Browse files
committed
Adding healthcheck.yml
1 parent d7aa16b commit 3bd757a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/healthcheck.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: WDIO health check
2+
on:
3+
schedule:
4+
- cron: "0 18 * * *"
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
build:
11+
runs-on: macos-latest
12+
env:
13+
LT_USERNAME: ${{ secrets.LT_USERNAME }}
14+
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }}
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Use Node.js 17.x
18+
uses: actions/setup-node@v2
19+
with:
20+
node-version: 17.x
21+
22+
- name: npm dependencies
23+
run: npm install
24+
25+
- name: Run test
26+
run: npm run test

0 commit comments

Comments
 (0)