chore: actions: yarn -> bun

This commit is contained in:
coderiaser 2025-01-21 00:52:48 +02:00
parent 161d4f952b
commit b0be119474
3 changed files with 4 additions and 5 deletions

View file

@ -20,9 +20,9 @@ jobs:
with:
node-version: 22.x
- name: Install Redrun
run: bun i yarn redrun -g --no-save
run: bun i redrun -g --no-save
- name: NPM Install
run: yarn --no-lockfile
run: bun i --no-save
- name: Lint
run: redrun lint
- name: Build

View file

@ -21,9 +21,9 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Redrun
run: bun i yarn redrun -g --no-save
run: bun i redrun -g --no-save
- name: Install
run: yarn --no-lockfile
run: bun i --no-save
- name: Lint
run: redrun fix:lint
- uses: actions/cache@v4