From d8b7417851b2ea023a56caa1e588cf70a52589f8 Mon Sep 17 00:00:00 2001 From: Jeremy Faivre Date: Wed, 4 Dec 2024 00:16:43 +0100 Subject: [PATCH] Another attempt at installing node on mac workflow --- .github/workflows/build-ceramic.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-ceramic.yml b/.github/workflows/build-ceramic.yml index 20ecc60d5..156d724f1 100644 --- a/.github/workflows/build-ceramic.yml +++ b/.github/workflows/build-ceramic.yml @@ -102,18 +102,11 @@ jobs: - name: Checkout submodules run: git submodule update --init --recursive - # - name: Setup Node.js - # uses: actions/setup-node@v4 - # with: - # node-version: '14.19.1' - - name: Setup Node.js - run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash - export NVM_DIR="$HOME/.nvm" - [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" - nvm install 14.19.1 - nvm use 14.19.1 + uses: actions/setup-node@v4 + with: + node-version: '14.19.1' + architecture: 'x64' - name: Setup NPM working-directory: .