diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 453b0828..da2c5560 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -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 diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c49d3c3b..d543312b 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -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 diff --git a/.madrun.mjs b/.madrun.mjs index be2aa5a4..9c2e91b5 100644 --- a/.madrun.mjs +++ b/.madrun.mjs @@ -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, diff --git a/.putout.json b/.putout.json index c746c016..e0cf5486 100644 --- a/.putout.json +++ b/.putout.json @@ -1,5 +1,7 @@ { - "plugins": ["cloudcmd"], + "plugins": [ + "cloudcmd" + ], "ignore": [ "html", "fixture*", @@ -7,7 +9,9 @@ "fontello.json" ], "rules": { - "webpack/apply-externals": "off" + "webpack/apply-externals": "off", + "github/convert-npm-to-bun": "off", + "github/install-bun": "off" }, "match": { "base64": { @@ -53,4 +57,4 @@ "merge-duplicate-functions": "off" } } -} +} \ No newline at end of file