We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7aa16b commit 3bd757aCopy full SHA for 3bd757a
.github/workflows/healthcheck.yml
@@ -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