Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 999e22b

Browse files
committedJan 4, 2021
chore: project checks update
1 parent 9e3876f commit 999e22b

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed
 

‎.github/workflows/daily-project-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Daily project check
22

33
on:
44
schedule:
5-
# build runs everyday at 6AM UTC
6-
- cron: '0 6 * * *'
5+
# build runs every weekday at 5AM UTC
6+
- cron: '0 5 * * 1-5'
77

88
jobs:
99
build:
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [10.x, 12.x]
15+
node-version: [12.x]
1616
os: [ubuntu-latest, windows-latest, macOS-latest]
1717

1818
steps:
@@ -46,4 +46,4 @@ jobs:
4646
# npm i
4747
# npm run test:e2e
4848
# env:
49-
# BROWSER: chrome
49+
# BROWSER: chrome

‎.github/workflows/project-check.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: Project check
22

33
on:
44
push:
5+
branches:
6+
- master
57
pull_request:
8+
branches:
9+
- master
610

711
jobs:
812
build:
@@ -11,7 +15,7 @@ jobs:
1115

1216
strategy:
1317
matrix:
14-
node-version: [10.x, 12.x]
18+
node-version: [12.x, 14.x]
1519
os: [ubuntu-latest, windows-latest, macOS-latest]
1620

1721
steps:
@@ -45,4 +49,4 @@ jobs:
4549
# npm i
4650
# npm run test:e2e
4751
# env:
48-
# BROWSER: chrome
52+
# BROWSER: chrome

0 commit comments

Comments
 (0)
Please sign in to comment.