From 735bbb150c8ba1edae0a363771665f773ccb17bd Mon Sep 17 00:00:00 2001 From: Muhammad Abdullah Waheed <42172960+abdullahwaheed@users.noreply.github.com> Date: Mon, 18 Sep 2023 22:02:50 +0500 Subject: [PATCH] chore: renamed ci workflow and updated node version method (#257) --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c74e2da6..8c38c238 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,17 +9,15 @@ on: - "**" jobs: - build: + tests: runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v3 - - name: Setup Nodejs Env - run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV - name: Setup Nodejs uses: actions/setup-node@v3 with: - node-version: ${{ env.NODE_VER }} + node-version-file: '.nvmrc' - name: Install Dependencies run: npm ci