We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50e2a07 commit 72700f0Copy full SHA for 72700f0
.github/workflows/nodejs.yml
@@ -5,13 +5,14 @@ name: Node CI
5
6
on:
7
push:
8
- branches: [ "master" ]
+ branches: [ "master", "next" ]
9
+ tags: [ "v*" ]
10
pull_request:
11
workflow_dispatch:
12
schedule:
- # schedule weekly tests, since dependencies are not intended to be locked
13
- # this means: at 23:42 on Fridays
14
- - cron: '42 23 * * 5'
+ # schedule daily tests, since dependencies are not intended to be locked
+ # this means: at 23:42 every day
15
+ - cron: '42 23 * * *'
16
17
concurrency:
18
group: '${{ github.workflow }}-${{ github.ref }}'
0 commit comments