Skip to content

Commit

Permalink
chore(core): wip
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Feb 18, 2025
1 parent 2ffc34b commit bbcfb20
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .nx/workflows/agents.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ launch-templates:
- name: Install zip and unzip
script: sudo apt-get -yqq install zip unzip

- name: Install bun
- name: Set SHELL
script: |
# We need $SHELL to be set for `bun completions` to work
echo "SHELL=bash" >> $NX_CLOUD_ENV
- name: Install bun
script: |
curl -fsSL https://bun.sh/install | bash
echo "BUN_INSTALL=$HOME/.bun" >> $NX_CLOUD_ENV
echo "PATH=$HOME/.bun/bin:$PATH" >> $NX_CLOUD_ENV
Expand All @@ -34,6 +38,7 @@ launch-templates:
script: |
bunx --help || true
bun --version
# We need to run `bun completions` in order for `bunx` to work
bun completions
bunx --help
Expand Down Expand Up @@ -92,6 +97,11 @@ launch-templates:
- name: Install zip and unzip
script: sudo apt-get -yqq install zip unzip

- name: Set SHELL
script: |
# We need $SHELL to be set for `bun completions` to work
echo "SHELL=bash" >> $NX_CLOUD_ENV
- name: Install bun
script: |
curl -fsSL https://bun.sh/install | bash
Expand All @@ -100,7 +110,9 @@ launch-templates:
- name: Check bun
script: |
bunx --help || true
bun --version
# We need to run `bun completions` in order for `bunx` to work
bun completions
bunx --help
Expand Down

0 comments on commit bbcfb20

Please sign in to comment.