From 5357b87c7c516ff9e77b76a1fbd1058a0a71cb6b Mon Sep 17 00:00:00 2001 From: mashal-m Date: Fri, 24 Feb 2023 23:34:40 +0500 Subject: [PATCH] refactor: add name of flow --- .github/workflows/ci.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a88f27..29a30bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,14 +7,13 @@ on: branches: - '**' jobs: - name: Release Preview + tests: runs-on: ubuntu-latest + strategy: + matrix: + node: [16, 18] steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 18 - - run: npm ci + name: Release Preview - run: npx semantic-release --dry-run id: get-next-version env: @@ -22,12 +21,6 @@ jobs: outputs: new-release-published: ${{ steps.get-next-version.outputs.new-release-published }} new-release-version: ${{ steps.get-next-version.outputs.new-release-version }} - tests: - runs-on: ubuntu-latest - strategy: - matrix: - node: [16] - steps: - name: Checkout uses: actions/checkout@v3 with: