Setup nvm again
Some checks failed
Build and deploy website / build (push) Failing after 2s
Build and deploy website / deploy (push) Failing after 3s

This commit is contained in:
Martin Berg Alstad
2024-09-28 12:26:31 +02:00
parent f0c56b3fdd
commit fcf79f2318

View File

@ -14,7 +14,10 @@ jobs:
steps:
- name: Setup nvm
run: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
run: |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
- name: Setup Node
run: nvm install latest && nvm use latest && npm install -g pnpm
- name: Check out repository code