mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
fix: disable bun for CI
This commit is contained in:
parent
34258c6f27
commit
ee5a0fb4b2
4 changed files with 12 additions and 11 deletions
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
7
.github/workflows/nodejs.yml
vendored
7
.github/workflows/nodejs.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue