From d9ca52e4ac3d7e1850ab515bd27ed1744b1e34d5 Mon Sep 17 00:00:00 2001 From: Dmitry Kireev Date: Thu, 8 Aug 2024 12:19:38 +0000 Subject: [PATCH] WIP --- .github/workflows/nvm-test.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/nvm-test.yml diff --git a/.github/workflows/nvm-test.yml b/.github/workflows/nvm-test.yml new file mode 100644 index 00000000..d197a211 --- /dev/null +++ b/.github/workflows/nvm-test.yml @@ -0,0 +1,32 @@ +on: + workflow_dispatch: + +jobs: + nvm-test: + runs-on: ubuntu-latest + timeout-minutes: 45 + steps: + - name: Checkout Code + uses: actions/checkout@v4 + with: + submodules: true + + - name: Run 0.39.7 1 shell level + run: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + source ~/.nvm/nvm.sh && nvm --version + + - name: Run 0.40.0 1 shell level + run: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash + source ~/.nvm/nvm.sh && nvm --version + + - name: Run 0.39.7 2 shell levels + run: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + bash -c "source ~/.nvm/nvm.sh && nvm --version" + + - name: Run 0.40.0 2 shell levels + run: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash + bash -c "source ~/.nvm/nvm.sh && nvm --version" \ No newline at end of file