File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 8
8
required : true
9
9
10
10
env :
11
- NODE_VERSION : ' lts/*'
12
- FORCE_COLOR : 2
11
+ FORCE_COLOR : 1
13
12
14
13
concurrency : # prevent concurrent releases
15
14
group : npm-bump
@@ -23,10 +22,10 @@ jobs:
23
22
with :
24
23
# fetch full history so things like auto-changelog work properly
25
24
fetch-depth : 0
26
- - name : Use Node.js ${{ env.NODE_VERSION }}
25
+ - name : Use Node.js
27
26
uses : actions/setup-node@v4
28
27
with :
29
- node-version : ${{ env.NODE_VERSION }}
28
+ node-version-file : package.json
30
29
# setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED
31
30
registry-url : ' https://registry.npmjs.org'
32
31
- run : npm i
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
18
18
runs-on : ubuntu-latest
19
19
steps :
20
20
- uses : actions/checkout@v4
21
- - name : Use Node.js lts/*
21
+ - name : Use Node.js
22
22
uses : actions/setup-node@v4
23
23
with :
24
- node-version : lts/*
24
+ node-version-file : package.json
25
25
- run : npm i
26
26
- run : npm run check
27
27
32
32
fail-fast : false
33
33
matrix :
34
34
os : [ubuntu-latest, windows-latest, macos-latest]
35
- node : ['lts/*', 18 ]
35
+ node : ['20', ' lts/*', '23' ]
36
36
37
37
steps :
38
38
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " npm-run-all2" ,
3
3
"version" : " 7.0.2" ,
4
- "description" : " A CLI tool to run multiple npm-scripts in parallel or sequential. (Maintainence fork)" ,
4
+ "description" : " A CLI tool to run multiple npm-scripts in parallel or sequential. (Maintenance fork)" ,
5
5
"bin" : {
6
6
"run-p" : " bin/run-p/index.js" ,
7
7
"run-s" : " bin/run-s/index.js" ,
10
10
},
11
11
"main" : " lib/index.js" ,
12
12
"engines" : {
13
- "node" : " ^18.17.0 || >=20.5.0" ,
14
- "npm" : " >= 9 "
13
+ "node" : " >=20.5.0" ,
14
+ "npm" : " >= 10 "
15
15
},
16
16
"scripts" : {
17
17
"clean" : " rm -rf coverage jsdoc \" test-workspace/{build,test.txt}\" " ,
You can’t perform that action at this time.
0 commit comments