diff --git a/.github/workflows/daily-project-check.yml b/.github/workflows/daily-project-check.yml index 38876575..687f8ded 100644 --- a/.github/workflows/daily-project-check.yml +++ b/.github/workflows/daily-project-check.yml @@ -2,8 +2,8 @@ name: Daily project check on: schedule: - # build runs everyday at 6AM UTC - - cron: '0 6 * * *' + # build runs every weekday at 5AM UTC + - cron: '0 5 * * 1-5' jobs: build: @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x] + node-version: [12.x] os: [ubuntu-latest, windows-latest, macOS-latest] steps: @@ -46,4 +46,4 @@ jobs: # npm i # npm run test:e2e # env: - # BROWSER: chrome \ No newline at end of file + # BROWSER: chrome diff --git a/.github/workflows/project-check.yml b/.github/workflows/project-check.yml index a0868f51..a7a91357 100644 --- a/.github/workflows/project-check.yml +++ b/.github/workflows/project-check.yml @@ -2,7 +2,11 @@ name: Project check on: push: + branches: + - master pull_request: + branches: + - master jobs: build: @@ -11,7 +15,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x] + node-version: [12.x, 14.x] os: [ubuntu-latest, windows-latest, macOS-latest] steps: @@ -45,4 +49,4 @@ jobs: # npm i # npm run test:e2e # env: - # BROWSER: chrome \ No newline at end of file + # BROWSER: chrome