From ba01841f6c76437eba5444895873d5caf5bf1f2b Mon Sep 17 00:00:00 2001 From: Navin Moorthy Date: Fri, 19 May 2023 11:27:09 +0530 Subject: [PATCH] =?UTF-8?q?chore(ci):=20=F0=9F=A7=B9=20replace=20`node-ver?= =?UTF-8?q?sion`=20input=20with=20`node-version-file`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/prepare/action.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index 76b79b0..ea0d015 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -2,12 +2,6 @@ name: Prepare description: Prepares the repo for a typical CI job -inputs: - node-version: - required: false - description: "`node-version` passed to `actions/setup-node`." - default: "18" - runs: using: composite steps: @@ -16,7 +10,7 @@ runs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: ${{ inputs.node-version }} + node-version-file: .nvmrc cache: yarn - name: Install dependencies