File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 14
14
with :
15
15
node-version : 16.x
16
16
- name : Install Redrun
17
- run : bun i redrun -g --no-save
17
+ run : npm i redrun -g
18
18
- name : NPM Install
19
- run : bun i --no-save
19
+ run : npm install
20
20
- name : Lint
21
21
run : redrun lint
22
22
- name : Build
Original file line number Diff line number Diff line change @@ -14,17 +14,14 @@ jobs:
14
14
- 20.x
15
15
steps :
16
16
- uses : actions/checkout@v3
17
- - uses : oven-sh/setup-bun@v1
18
- with :
19
- bun-version : latest
20
17
- name : Use Node.js ${{ matrix.node-version }}
21
18
uses : actions/setup-node@v3
22
19
with :
23
20
node-version : ${{ matrix.node-version }}
24
21
- name : Install Redrun
25
- run : bun i redrun -g --no-save
22
+ run : npm i redrun -g
26
23
- name : Install
27
- run : bun i --no-save
24
+ run : npm install
28
25
- name : Lint
29
26
run : redrun fix:lint
30
27
- uses : actions/cache@v3
Original file line number Diff line number Diff line change 1
- import process from 'node:process' ;
2
1
import {
3
2
run ,
4
3
cutEnv ,
5
4
} from 'madrun' ;
5
+ import process from 'node:process' ;
6
6
7
7
const testEnv = {
8
8
THREAD_IT_COUNT : 0 ,
Original file line number Diff line number Diff line change 1
1
{
2
- "plugins" : [" cloudcmd" ],
2
+ "plugins" : [
3
+ " cloudcmd"
4
+ ],
3
5
"ignore" : [
4
6
" html" ,
5
7
" fixture*" ,
6
8
" app.json" ,
7
9
" fontello.json"
8
10
],
9
11
"rules" : {
10
- "webpack/apply-externals" : " off"
12
+ "webpack/apply-externals" : " off" ,
13
+ "github/convert-npm-to-bun" : " off" ,
14
+ "github/install-bun" : " off"
11
15
},
12
16
"match" : {
13
17
"base64" : {
53
57
"merge-duplicate-functions" : " off"
54
58
}
55
59
}
56
- }
60
+ }
You can’t perform that action at this time.
0 commit comments