This commit is contained in:
parent
fbbcd8a10d
commit
910b9de5bc
1 changed files with 12 additions and 0 deletions
|
@ -15,6 +15,11 @@ jobs:
|
|||
with:
|
||||
submodules: "recursive"
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '20'
|
||||
|
||||
- name: Setup java
|
||||
uses: https://github.com/actions/setup-java@v4
|
||||
with:
|
||||
|
@ -26,6 +31,13 @@ jobs:
|
|||
curl -fsSL https://bun.sh/install | bash
|
||||
echo "$HOME/.bun/bin" >> $GITHUB_PATH
|
||||
|
||||
- name: Verify installations
|
||||
run: |
|
||||
echo "PATH: $PATH"
|
||||
node --version
|
||||
which bun || echo "Bun not found in PATH"
|
||||
bun --version || echo "Bun command failed"
|
||||
|
||||
- name: Install app dependencies
|
||||
working-directory: ./dust
|
||||
run: ~/.bun/bin/bun install
|
||||
|
|
Loading…
Add table
Reference in a new issue