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 ff7d7ea commit 8ed0ae7Copy full SHA for 8ed0ae7
.github/workflows/nodejs.yml
@@ -5,14 +5,14 @@ name: Node CI
5
6
on:
7
push:
8
- branches: [ 'main', 'master', '1.0-dev' ]
+ branches: [ 'main', 'master', 'next' ]
9
tags: [ 'v*' ]
10
pull_request:
11
workflow_dispatch:
12
schedule:
13
- # schedule weekly tests, since dependencies are not intended to be locked
14
- # this means: at 23:42 on Fridays
15
- - cron: '42 23 * * 5'
+ # schedule daily tests, since dependencies are not intended to be locked
+ # this means: at 23:42 every day
+ - cron: '42 23 * * *'
16
17
concurrency:
18
group: '${{ github.workflow }}-${{ github.ref }}'
0 commit comments