From ec2154f329698e0394197f038d749a110f1ded69 Mon Sep 17 00:00:00 2001 From: Marc-Aurele Besner <82244926+marc-aurele-besner@users.noreply.github.com> Date: Wed, 5 Jun 2024 07:29:01 -0400 Subject: [PATCH] fix workflow --- .github/workflows/build.yaml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index afca9ba6..42facf98 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,23 +10,13 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 - - name: Set up Node.js + - name: Set up Node.js 🍞 uses: actions/setup-node@v2 with: node-version: '18' - - name: Install Bun - run: | - curl -fsSL https://bun.sh/install | bash - echo 'export PATH="$HOME/.bun/bin:$PATH"' >> $GITHUB_ENV - - - name: Source bashrc - run: source ~/.bashrc - - - name: Install dependencies - run: bun install - env: - PATH: ${{ env.PATH }}:~/.bun/bin + - name: Install Bun (via Bun action) 🍞 + uses: oven-sh/setup-bun@v1 - name: Install dependencies run: bun install