fix(bun): Use fixed bun version (#5493)
This commit is contained in:
parent
87f78069e7
commit
3fe67d5c98
@ -22,7 +22,7 @@ commands:
|
|||||||
name: Install Bun
|
name: Install Bun
|
||||||
command: |
|
command: |
|
||||||
if [ ! -d "$HOME/.bun" ]; then
|
if [ ! -d "$HOME/.bun" ]; then
|
||||||
curl -fsSL https://bun.sh/install | bash
|
curl -fsSL https://bun.sh/install | bash -s "bun-v1.2.23"
|
||||||
fi
|
fi
|
||||||
echo 'export BUN_INSTALL="$HOME/.bun"' >> $BASH_ENV
|
echo 'export BUN_INSTALL="$HOME/.bun"' >> $BASH_ENV
|
||||||
echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> $BASH_ENV
|
echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> $BASH_ENV
|
||||||
|
|||||||
2
.github/workflows/build-docs.yml
vendored
2
.github/workflows/build-docs.yml
vendored
@ -23,6 +23,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: oven-sh/setup-bun@v2
|
- uses: oven-sh/setup-bun@v2
|
||||||
|
with:
|
||||||
|
bun-version: 1.2.23
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 20 # Or your desired Node version
|
node-version: 20 # Or your desired Node version
|
||||||
|
|||||||
2
.github/workflows/playwright.yml
vendored
2
.github/workflows/playwright.yml
vendored
@ -18,6 +18,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: oven-sh/setup-bun@v2
|
- uses: oven-sh/setup-bun@v2
|
||||||
|
with:
|
||||||
|
bun-version: 1.2.23
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user