Skip to content

Commit ee5a0fb

Browse files
committed
fix: disable bun for CI
1 parent 34258c6 commit ee5a0fb

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
with:
1515
node-version: 16.x
1616
- name: Install Redrun
17-
run: bun i redrun -g --no-save
17+
run: npm i redrun -g
1818
- name: NPM Install
19-
run: bun i --no-save
19+
run: npm install
2020
- name: Lint
2121
run: redrun lint
2222
- name: Build

.github/workflows/nodejs.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,14 @@ jobs:
1414
- 20.x
1515
steps:
1616
- uses: actions/checkout@v3
17-
- uses: oven-sh/setup-bun@v1
18-
with:
19-
bun-version: latest
2017
- name: Use Node.js ${{ matrix.node-version }}
2118
uses: actions/setup-node@v3
2219
with:
2320
node-version: ${{ matrix.node-version }}
2421
- name: Install Redrun
25-
run: bun i redrun -g --no-save
22+
run: npm i redrun -g
2623
- name: Install
27-
run: bun i --no-save
24+
run: npm install
2825
- name: Lint
2926
run: redrun fix:lint
3027
- uses: actions/cache@v3

.madrun.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import process from 'node:process';
21
import {
32
run,
43
cutEnv,
54
} from 'madrun';
5+
import process from 'node:process';
66

77
const testEnv = {
88
THREAD_IT_COUNT: 0,

.putout.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
2-
"plugins": ["cloudcmd"],
2+
"plugins": [
3+
"cloudcmd"
4+
],
35
"ignore": [
46
"html",
57
"fixture*",
68
"app.json",
79
"fontello.json"
810
],
911
"rules": {
10-
"webpack/apply-externals": "off"
12+
"webpack/apply-externals": "off",
13+
"github/convert-npm-to-bun": "off",
14+
"github/install-bun": "off"
1115
},
1216
"match": {
1317
"base64": {
@@ -53,4 +57,4 @@
5357
"merge-duplicate-functions": "off"
5458
}
5559
}
56-
}
60+
}

0 commit comments

Comments
 (0)