From 863a61a4eacedd9229102810235a521284cbb642 Mon Sep 17 00:00:00 2001 From: Daniel Waltz Date: Mon, 18 Nov 2024 12:56:36 -0500 Subject: [PATCH] chore: use `.node-version` file --- .github/workflows/main.yml | 4 ++-- .nvmrc => .node-version | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename .nvmrc => .node-version (100%) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7520fff..b0285af 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version-file: .nvmrc + node-version-file: .node-version cache: npm - run: npm ci - run: npm run lint @@ -25,7 +25,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v4 with: - node-version-file: .nvmrc + node-version-file: .node-version cache: npm - run: npm ci - run: npm run semantic-release diff --git a/.nvmrc b/.node-version similarity index 100% rename from .nvmrc rename to .node-version