Skip to content

Commit

Permalink
fix: disable bun for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Sep 4, 2023
1 parent 34258c6 commit ee5a0fb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
with:
node-version: 16.x
- name: Install Redrun
run: bun i redrun -g --no-save
run: npm i redrun -g
- name: NPM Install
run: bun i --no-save
run: npm install
- name: Lint
run: redrun lint
- name: Build
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,14 @@ jobs:
- 20.x
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Redrun
run: bun i redrun -g --no-save
run: npm i redrun -g
- name: Install
run: bun i --no-save
run: npm install
- name: Lint
run: redrun fix:lint
- uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .madrun.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import process from 'node:process';
import {
run,
cutEnv,
} from 'madrun';
import process from 'node:process';

const testEnv = {
THREAD_IT_COUNT: 0,
Expand Down
10 changes: 7 additions & 3 deletions .putout.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"plugins": ["cloudcmd"],
"plugins": [
"cloudcmd"
],
"ignore": [
"html",
"fixture*",
"app.json",
"fontello.json"
],
"rules": {
"webpack/apply-externals": "off"
"webpack/apply-externals": "off",
"github/convert-npm-to-bun": "off",
"github/install-bun": "off"
},
"match": {
"base64": {
Expand Down Expand Up @@ -53,4 +57,4 @@
"merge-duplicate-functions": "off"
}
}
}
}

0 comments on commit ee5a0fb

Please sign in to comment.