From 6e7da7edc56f1ab410e81b3d02b5d2764d406909 Mon Sep 17 00:00:00 2001 From: PKulkoRaccoonGang Date: Thu, 16 Nov 2023 21:51:21 +0200 Subject: [PATCH] refactor: code refactoring --- .github/workflows/ci.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc47977252c..9237be32fd7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,22 +21,20 @@ jobs: node-version: ${{env.NODE_VER }} - name: Install dependencies run: npm ci - - name: Check Types - run: npm run type-check - - name: Lint - run: npm run lint - - name: Test - run: npm run test - name: Build run: npm run build - name: Build Docs run: npm run build-docs - - name: Coverage - uses: codecov/codecov-action@v3 - name: Extract branch name shell: bash - run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV + run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" id: extract_branch + - name: BRANCH VAR + id: step_two + run: printf '%s\n' "===============> $branch <===============" + - name: NAME VAR + id: step_two + run: printf '%s\n' "===============> $name <===============" - name: Preview semantic-release version env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}