From db468f7c490941b86f4821b635a22f2f011fc1ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Tue, 30 May 2023 11:21:37 +0200 Subject: [PATCH] MOBILE-4270 github: Install node 14 on release --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0186d6176..5f8078267 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,6 +12,11 @@ jobs: with: persist-credentials: false fetch-depth: 0 + - uses: actions/setup-node@v3 + with: + node-version-file: '.nvmrc' + - name: Install npm packages + run: npm ci --no-audit - name: Create release tags env: GIT_TOKEN: ${{ secrets.GIT_TOKEN }}