From bef500743a4788fa6f74fd1c0b8573566576ae78 Mon Sep 17 00:00:00 2001 From: Filipe Freire Date: Fri, 17 May 2024 10:23:30 +0100 Subject: [PATCH] add npm ci --- .github/workflows/release.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b46a25766..9c656ae7d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,12 +21,19 @@ jobs: fetch-depth: 0 token: ${{ secrets.PAT_INSOMNIA_INFRA }} - - name: Configure Git user uses: Homebrew/actions/git-user-config@master with: username: ${{ (github.event_name == 'workflow_dispatch' && github.actor) || 'insomnia-infra' }} + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install + run: npm ci + - name: Create new package version run: npm version "${{ env.TAG }}"