2019-11-19 23:11:21 +08:00
|
|
|
name: integration-tests
|
2019-08-26 23:36:17 +08:00
|
|
|
on:
|
2019-09-06 10:34:59 +08:00
|
|
|
schedule:
|
2019-11-21 22:34:12 +08:00
|
|
|
- cron: 0 10 * * 0-6
|
2019-08-26 23:36:17 +08:00
|
|
|
jobs:
|
|
|
|
integration-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2019-11-20 22:01:31 +08:00
|
|
|
uses: actions/checkout@v1
|
2019-08-26 23:36:17 +08:00
|
|
|
|
|
|
|
- name: Build and Deploy
|
2019-11-20 22:01:31 +08:00
|
|
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
|
|
|
with:
|
2019-08-26 23:36:17 +08:00
|
|
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
|
|
|
BRANCH: gh-pages
|
2019-11-21 00:58:04 +08:00
|
|
|
FOLDER: integration
|
|
|
|
BASE_BRANCH: dev
|