Skip to content

Commit 599dc2e

Browse files
committed
chore: project checks update
1 parent ae9d901 commit 599dc2e

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

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

+4-4
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 6AM UTC
6+
- cron: '0 6 * * 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:
@@ -26,4 +26,4 @@ jobs:
2626
npm i
2727
npm run release
2828
env:
29-
CI: true
29+
CI: true

.github/workflows/project-check.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
name: Project check
22

3-
on:
3+
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]
1519
os: [ubuntu-latest, windows-latest, macOS-latest]
1620

1721
steps:
@@ -25,4 +29,4 @@ jobs:
2529
npm i
2630
npm run release
2731
env:
28-
CI: true
32+
CI: true

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
[![Build](https://img.shields.io/github/workflow/status/coreui/coreui-vue/Project%20check?style=flat-square)][coreui]
77
[![License](https://img.shields.io/npm/l/@coreui/vue?style=flat-square)][coreui]
88
[![Coverage](https://img.shields.io/badge/test%20coverage%203.0.12%20version-100%25-yellowgreen)][coreui]
9+
![Daily project check](https://github.com/coreui/coreui-vue/workflows/Daily%20project%20check/badge.svg)
910

1011
[npm-coreui-vue]: https://www.npmjs.com/package/@coreui/vue
1112
[npm-coreui-vue-badge-latest]: https://img.shields.io/npm/v/@coreui/vue/latest?style=flat-square&color=brightgreen

0 commit comments

Comments
 (0)