Skip to content

Commit dca0c24

Browse files
committed
chore: update workflows
1 parent 0876086 commit dca0c24

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/greetings.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
- uses: actions/first-interaction@v1
1010
with:
1111
repo-token: ${{ secrets.GITHUB_TOKEN }}
12-
issue-message: 'Hi! Thank you for contributing to our project. You are helping to make our product better! :)'
13-
pr-message: 'Hi! Thank you for contributing to our project. You are helping to make our product better! :)'
12+
issue-message: 'Hi! Thank you for your first contribution to our project. You are helping to make our product better! :)'
13+
pr-message: 'Hi! Thank you for your first PR to our project. You are helping to make our product better! :)'

.github/workflows/nodejs.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Node CI
22

3-
on: [push]
3+
on:
4+
push:
5+
pull_request:
6+
schedule: [0 6 * * *]
47

58
jobs:
69
build:
@@ -9,7 +12,8 @@ jobs:
912

1013
strategy:
1114
matrix:
12-
node-version: [8.x]
15+
node-version: [8.x, 10.x, 12.x]
16+
os: [ubuntu-latest, windows-latest, macOS-latest]
1317

1418
steps:
1519
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)