From b86ecc78a16aa7348fdc9c4175d3daca16bd4fe8 Mon Sep 17 00:00:00 2001
From: Alexander Eble <35292572+alexanderdavide@users.noreply.github.com>
Date: Wed, 05 Oct 2022 20:01:18 +0000
Subject: [PATCH] fix: resolve dependency conflict conventional changelog release it (#388)

---
 .github/workflows/format.yml |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
index 5a6688e..7a06d7c 100644
--- a/.github/workflows/format.yml
+++ b/.github/workflows/format.yml
@@ -9,11 +9,15 @@
     runs-on: ubuntu-latest
     steps:
       - name: checkout code
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
       - name: setup node
-        uses: actions/setup-node@v2
+        uses: actions/setup-node@v3
+        with:
+          node-version: 14
       - name: install
-        run: npm ci
+        run: |
+          npm ci
+          npm run prepare
       - name: format
         run: npm run prettier
       - name: commit changes

--
Gitblit v1.10.0