Skip to content

Commit 375c9dd

Browse files
authored
Merge pull request #1844 from blackflux/dev
[Gally]: master <- dev
2 parents ad22eb8 + 798328c commit 375c9dd

File tree

5 files changed

+261
-165
lines changed

5 files changed

+261
-165
lines changed

.c8rc.json

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"coverage/*",
66
"lib/*",
77
"test/hot.js",
8+
"test/reg.js",
9+
"eslint.config.js",
810
"eslint.config.js",
911
"test/reg.js",
1012
"src/plugin/tasks/**",

.circleci/config.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@ workflows:
22
node-multi-build:
33
jobs:
44
- gally-create-pr
5-
- test-node-v18:
5+
- test-node-v20:
66
requires:
77
- gally-create-pr
8-
- test-node-v21:
8+
- test-node-v23:
99
requires:
1010
- gally-create-pr
11-
- test-node-v20:
11+
- test-node-v22:
1212
requires:
1313
- gally-create-pr
1414
- gally-auto-approve:
1515
requires:
1616
- gally-create-pr
17-
- test-node-v18
18-
- test-node-v21
1917
- test-node-v20
18+
- test-node-v23
19+
- test-node-v22
2020
filters:
2121
branches:
2222
only: /dependabot\/.*/
2323
- release:
2424
requires:
2525
- gally-create-pr
26-
- test-node-v18
27-
- test-node-v21
2826
- test-node-v20
27+
- test-node-v23
28+
- test-node-v22
2929
filters:
3030
branches:
3131
only: master
@@ -40,7 +40,7 @@ jobs:
4040
- run: ga promote $CIRCLE_BRANCH
4141
release:
4242
docker:
43-
- image: cimg/node:20.11
43+
- image: cimg/node:22.13
4444
steps:
4545
- checkout
4646
- run:
@@ -87,9 +87,9 @@ jobs:
8787
- run: >-
8888
ga approve $CIRCLE_PR_NUMBER --condition
8989
"base.ref=dev&state=open&user.login=dependabot-preview[bot]"
90-
test-node-v18:
90+
test-node-v20:
9191
docker:
92-
- image: cimg/node:18.19
92+
- image: cimg/node:20.18
9393
steps:
9494
- checkout
9595
- run:
@@ -119,9 +119,9 @@ jobs:
119119
- run: >-
120120
(git add . && git diff-index --quiet HEAD --) || (git status && exit
121121
1);
122-
test-node-v20:
122+
test-node-v23:
123123
docker:
124-
- image: cimg/node:20.11
124+
- image: cimg/node:23.6
125125
steps:
126126
- checkout
127127
- run:
@@ -151,9 +151,9 @@ jobs:
151151
- run: >-
152152
(git add . && git diff-index --quiet HEAD --) || (git status && exit
153153
1);
154-
test-node-v21:
154+
test-node-v22:
155155
docker:
156-
- image: cimg/node:21.6
156+
- image: cimg/node:22.13
157157
steps:
158158
- checkout
159159
- run:

.gally.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"strict": true,
2424
"contexts": [
2525
"ci/circleci: gally-create-pr",
26-
"ci/circleci: test-node-v18",
27-
"ci/circleci: test-node-v21",
28-
"ci/circleci: test-node-v20"
26+
"ci/circleci: test-node-v20",
27+
"ci/circleci: test-node-v23",
28+
"ci/circleci: test-node-v22"
2929
]
3030
},
3131
"enforce_admins": false,

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@
3636
},
3737
"homepage": "https://github.com/blackflux/robo-config-plugin#readme",
3838
"devDependencies": {
39-
"@babel/core": "7.25.2",
40-
"@babel/eslint-parser": "7.25.1",
41-
"@babel/register": "7.24.6",
39+
"@babel/core": "7.26.7",
40+
"@babel/eslint-parser": "7.26.5",
41+
"@babel/register": "7.25.9",
4242
"@blackflux/eslint-plugin-rules": "3.0.1",
43-
"@blackflux/robo-config-plugin": "9.4.1",
44-
"c8": "10.1.2",
45-
"chai": "5.1.1",
46-
"eslint": "8.57.0",
43+
"@blackflux/robo-config-plugin": "10.0.0",
44+
"c8": "10.1.3",
45+
"chai": "5.1.2",
46+
"eslint": "8.57.1",
4747
"eslint-config-airbnb-base": "15.0.0",
48-
"eslint-plugin-import": "2.30.0",
48+
"eslint-plugin-import": "2.31.0",
4949
"eslint-plugin-json": "4.0.1",
5050
"eslint-plugin-markdown": "5.1.0",
5151
"eslint-plugin-mocha": "10.5.0",

0 commit comments

Comments
 (0)