Skip to content

Commit 8ea430b

Browse files
committed
Disable scheduled CI, and update Node versions
After 60 days, GitHub seems to disable the workflow. https://github.com/joliss/node-walk-sync/actions/workflows/ci.yml says "This scheduled workflow is disabled because there hasn't been activity in this repository for at least 60 days", and there are no runs listed at all, so perhaps GitHub is turning off not just the scheduled runs, but the whole workflow. Let's see if turning off the scheduling brings it back.
1 parent 78f12c7 commit 8ea430b

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88
tags:
99
- '*'
1010
pull_request: {}
11-
schedule:
12-
- cron: '0 6 * * 0' # weekly, on sundays
1311

1412
jobs:
1513
test:
@@ -18,7 +16,7 @@ jobs:
1816

1917
strategy:
2018
matrix:
21-
node: ['10', '12', '14', '16']
19+
node: ['20', '22', '24']
2220
os: [ubuntu, macOS]
2321

2422
steps:

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"types": "index.d.ts",
88
"license": "MIT",
99
"engines": {
10-
"node": "10.* || >= 12.*"
10+
"node": ">= 12.*"
1111
},
1212
"repository": {
1313
"type": "git",
@@ -41,7 +41,7 @@
4141
"test": "jest ."
4242
},
4343
"volta": {
44-
"node": "10.21.0",
45-
"yarn": "1.22.4"
44+
"node": "24.7.0",
45+
"yarn": "1.22.22"
4646
}
4747
}

0 commit comments

Comments
 (0)