From 9b6a42e412a86092ea2750857158f4751298f26a Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Mon, 20 Jun 2022 20:33:44 +0300 Subject: [PATCH] fix(workflows): fixed npmpublish workflow --- .github/workflows/npmpublish.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index 0d405de..7015825 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -11,10 +11,15 @@ on: jobs: build: runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [lts/fermium] + steps: - name: Checkout uses: actions/checkout@v2 - + - name: Install Dependencies run: npm ci @@ -23,7 +28,7 @@ jobs: - name: Build Project run: npm run build - + - name: Semantic Release uses: cycjimmy/semantic-release-action@v2 env: